如何将所有页面重定向到单个页面,除了没有无限循环的一个页面

时间:2018-04-10 03:14:38

标签: wordpress apache .htaccess

在我的WordPress网站上使用htaccess,我希望将所有页面重定向到 “正在建设中”页面除了一页,www.mydomain.com / notredirect。

如何在没有无限循环的情况下完成上述操作?

1 个答案:

答案 0 :(得分:0)

这些 RewriteCond 用于检查请求uri是以/maintenance还是/notredirect开头。 !是否定的。 RewriteCond 继续,如果uri 不是,则以/maintenance/notredirect

开头
RewriteCond %{REQUEST_URI} !^/?maintenance$
RewriteCond %{REQUEST_URI} !^/?notredirect$

如果符合上述 RewriteCond ,则可以使用以下 RewriteRule 将用户重定向到特定页面,例如/maintenance

RewriteRule ^ /maintenance [R, L]