打开 URL 但指向主目录
Open URL but point to main directory
我打算用 AJAX 做一个网站。
目前我用'#'更改我的主要内容:
例如example.com/#home
--> example.com/#site1
我设法在主题标签更改时更改内容。
但现在我想使用我从 google 了解到的方法。
example.com/home/
--> example.com/site1/
到目前为止,我知道如何在不重新定位页面的情况下更改 URL。 (Modify the URL without reloading the page) 我的问题是如果用户重新加载站点或使用导航按钮,他将登陆 example.com/site1/index.php
而不是 example.com/index.php
。
但是将数据 (site1) 发送到脚本很重要。
希望你能理解我的问题。
无论 url 是什么,您都需要在服务器端(例如 .htaccess
)来 return 您的 index.php。
请参阅此处了解可能的解决方案:
我打算用 AJAX 做一个网站。
目前我用'#'更改我的主要内容:
例如example.com/#home
--> example.com/#site1
我设法在主题标签更改时更改内容。
但现在我想使用我从 google 了解到的方法。
example.com/home/
--> example.com/site1/
到目前为止,我知道如何在不重新定位页面的情况下更改 URL。 (Modify the URL without reloading the page) 我的问题是如果用户重新加载站点或使用导航按钮,他将登陆 example.com/site1/index.php
而不是 example.com/index.php
。
但是将数据 (site1) 发送到脚本很重要。
希望你能理解我的问题。
无论 url 是什么,您都需要在服务器端(例如 .htaccess
)来 return 您的 index.php。
请参阅此处了解可能的解决方案: