2017-02-09 93 views
1

我已經寫了在.htaccess重定向規則,但它重定向過很多次,打破了網頁.htaccess重定向太多次了?

RewriteCond %{THE_REQUEST} /consultation/first_t [NC] 
RewriteRule ^/?(http://babycareadvice.com)? /consultation/first_time? [R=301] 

如何解決呢?

回答

0

您的條件模式和規則的目標是相同的,這就是爲什麼你會得到多個重定向。要解決這個問題,只需用你的RewriteCond替換這個

RewriteCond %{THE_REQUEST} /consultation/first_t\s [NC]