我正在使用这个htaccess进行维护。 当我转到www.mysite.com时它会起作用 但是,如果我转到www.mysite.com/somefolder,它不会重定向 即使子文件夹中没有任何内容
我有什么想法可以解决这个问题吗?
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/maintenance\.html$
RewriteCond %{REQUEST_URI} !\.(jpg|jpeg|png|gif|css|ico)$ [NC]
RewriteRule ^(.*)$ http://www.mysite.co.uk/maintenance.html [R=307,L]