3
我想將example.com重定向到example.au,但同時我想從重定向中排除example.com/admin。如果是,請提供任何重寫規則。如有任何幫助,我們將不勝感激。帶htaccess的Magento重定向
代碼:
RewriteEngine on
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_URI} !^/admin [NC]
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
#RewriteRule *的index.php [L]
RewriteRule ^(.*)$ www.example.com.au/$1 [R=301,L]
RewriteRule !^(admin/.*)$ www.example.com.au/$1 [R=301,L]
非常感謝,你救了我!!!!!!!!!!!!!!!! – vic
@vic歡迎 – DRAJI
更多的事情親愛的它表明,它有rediect 301和302. 我檢查它與這個網站redirect-checker.org。 結果: example.com/ 301永久移動 example.com.au 302暫時移動 www.example.com.au/ 200 OK 能否請你告訴我哪裏做的錯誤提前 – vic