使用.htaccess重定向到新的临时页面

时间:2014-04-16 01:05:22

标签: .htaccess

我在这个地址有一个论坛社区

http://www.mywebpage.com/forum

即将关闭3天进行大型维护(新论坛,导入等等),我想将用户重定向到临时页面,如果他们可以获知更新

http://www.mywebpage.com/index2.php

这是我尝试过但没有成功......

RewriteCond %{HTTP_REFERER} ^http://www\.mywebpage\.com/forum.* [L]
RewriteRule ^(.*) http://www\.mywebpage\.com/index2.php [L]

如何临时重定向(HTTP 302)到临时页面?

1 个答案:

答案 0 :(得分:0)

得到了它!在这里找到答案:

http://perishablepress.com/htaccess-redirect-maintenance-page-site-updates/

RewriteBase /
RewriteCond %{REQUEST_URI} !/index2.php$
RewriteRule ^forum/.*$ /index2.php [R=302,L]