我的路径如www.example.com/coupon/searchresult.php?txtCity=Chennai&txtArea=Annanagar。对于上面的子文件夹的路径文件,htaccess无法正常工作。这是我第一次使用htaccess。所以请提供你的答案。在此先感谢.....
答案 0 :(得分:0)
RewriteRule ^([a-zA-Z0-9_-]+)/coupon/([a-zA-Z0-9_-]+)/$ searchresult.php?txtcity=$1&txtarea=$2
OR
RewriteRule ^([a-zA-Z0-9_-]+)/coupon/$ searchresult.php?txtcity=$1&txtarea=$2
请使用这个并根据您的意愿进行修改,这将有助于您确定!