我在这个地址有一个论坛社区
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)到临时页面?
答案 0 :(得分:0)
http://perishablepress.com/htaccess-redirect-maintenance-page-site-updates/
RewriteBase /
RewriteCond %{REQUEST_URI} !/index2.php$
RewriteRule ^forum/.*$ /index2.php [R=302,L]