我有一个单页网站,它根据使用 PHP 通过 URL 传递的变量来更改内容。
例如,我的网址显示为
www.mysite.com/index.php?section=home
www.mysite.com/index.php?section=about-us
依此类推,具体取决于您在主导航中单击的链接。
我希望网址读为www.mysite.com/home
or www.mysite.com/about-us
。
我的 mod-rewrite 功能已启用,因为在我将其设为单页站点之前,它运行正常。
我试过这个...
RewriteEngine on
RewriteBase /
RewriteRule ^home/?$ index.php?section=$1 [NC,L]
我已经尝试了在 Google 和 StackOverflow 上找到的所有建议,但没有任何效果。
任何帮助,将不胜感激!