我在.htaccess中遇到了一些问题..
我的网站网址是ex。 www.example.com/
当我们使用下拉列表转到城市页面时,来到index.php?city=cityname
(它是正确的)
当我们转到关于我们的页面时,它变成了indexpage而不是about us page
城市网页网址:www.example.com/cityname
关于我们网址:www.example.com/about-us
低于htaccess代码;
当我们进入我们页面时,它会进入索引页面
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?city=$1
RewriteRule ^about-us$ about_us.php
答案 0 :(得分:0)
您只需更改重写顺序即可。所以,使用这个:
RewriteRule ^about-us$ about_us.php
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?city=$1