我想通過htaccess重定向301,但由於某些原因,這是行不通的,因爲我在htaccess中有更多的規則,但是如果我刪除它們並留下重定向它的工作。HTACCESS and redirect 301
任何想法?..
Options +FollowSymLinks
RewriteEngine On
ErrorDocument 404 error.php
RewriteRule ^sitemap.xml sitemap.php
RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule .* - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteRule (.*) seoPage.php?w=%{REQUEST_URI}
所以我們應該猜你在.htaccess中有什麼? – daniels
附加的代碼... – John