我正在尝试重定向mydomain.com的所有请求,无论它们是否类似:
重定向到
只要它中有mydomain.com,就应该看到这个页面 - 我们很快就会回复这个消息。
我应该在.htaccess或conf中进行吗?怎么样?
答案 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