将域下的所有请求重定向到静态页面

时间:2009-08-21 23:26:53

标签: apache configuration .htaccess redirect

我正在尝试重定向mydomain.com的所有请求,无论它们是否类似:

重定向到

只要它中有mydomain.com,就应该看到这个页面 - 我们很快就会回复这个消息。

我应该在.htaccess或conf中进行吗?怎么样?

1 个答案:

答案 0 :(得分:51)

我实际上最终在ServerFault上找到了答案:

https://serverfault.com/questions/32513/url-redirect-to-another-page-on-the-same-site

“此示例将302将所有网址重定向到”/underconstruction.html“:

RewriteEngine On
RewriteCond %{REQUEST_URI} !=/underconstruction.html
RewriteRule ^ /underconstruction.html [R=302]

(翻译为“如果URI不是/underconstruction.html,重定向到/underconstruction.html”)“ - Tommeh