如何在htaccess中使用子目录php文件请求值

时间:2013-03-01 12:58:19

标签: php .htaccess

我的路径如www.example.com/coupon/searchresult.php?txtCity=Chennai&txtArea=Annanagar。对于上面的子文件夹的路径文件,htaccess无法正常工作。这是我第一次使用htaccess。所以请提供你的答案。在此先感谢.....

1 个答案:

答案 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

请使用这个并根据您的意愿进行修改,这将有助于您确定!