2013-03-01 56 views
-2

我有類似www.example.com/coupon/searchresult.php?txtCity=Chennai & txtArea = Annanagar的路徑。對於上述子文件夾的路徑文件htaccess不起作用。這是我第一次使用htaccess。所以請提供您的答案。在此先感謝.....如何使用htaccess中的子目錄php文件請求值

+0

請顯示您當前的.htaccess文件。 – mimipc 2013-03-01 12:59:15

+0

你當前的htacces的代碼是什麼? – Johny 2013-03-01 13:00:11

回答

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 

請使用這一個,並修改爲你希望它會幫助你的肯定!

+0

上述代碼在htaccess.I中也不起作用,如「RewriteRule ^([a-zA-Z0-9 _-] +)/ coupon/$ searchresult.php?txtcity = $ 1&txtarea = $ 2 [QSA,L]」。任何其他解決方案來解決這個問題? – Simbu 2013-03-02 03:48:04

相關問題