在我的WordPress网站上使用htaccess,我希望将所有页面重定向到 “正在建设中”页面除了一页,www.mydomain.com / notredirect。
如何在没有无限循环的情况下完成上述操作?
答案 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]