使用htaccess从一个html重定向到另一个html

时间:2015-03-05 23:05:39

标签: .htaccess mod-rewrite redirect

我需要执行一个简单的重定向,我将页面重定向到另一个之前以下规则,我已经在我的.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

在RewriteEngine和

之后

RewriteRule page1.html page2.html [R=301,L]

但它不起作用。

您能否告诉我从page1.html重定向到page2.html应该添加哪一行?

谢谢!

0 个答案:

没有答案