我需要执行一个简单的重定向,我将.htaccess
文件中应用了这些规则:
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
#RewriteBase /
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]
</IfModule>`
我尝试了各种各样的东西,比如添加一个简单的
redirect page1.html page2.html
行
RewriteRule page1.html page2.html [R=301,L]
但它不起作用。
您能否告诉我从page1.html
重定向到page2.html
应该添加哪一行?
谢谢!