2014-01-15 42 views

回答

0

您需要刪除匹配請求URI的正則表達式中的^限定符。您也可以擺脫第二個條件,並將其與規則相結合:

# any https link with product_info.php in it >> the http link 
RewriteCond %{HTTPS} =on 
RewriteRule product_info\.php$ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] 
+0

謝謝!我試圖給你投票。但是,我還沒有這個聲望。 –

+0

Jon Lin,http://www.cheerbowsetc.com/product_info.php?cPath=1_40&products_id=2978開發者仍然使用該代碼報告無限重定向。我現在已經評論了。任何可能的原因? –

+0

@DenverProphitJr。會猜測你有代碼強制HTTPS的地方,該代碼需要** ** product_info.php URI的 –

相關問題