我一直在尝试使用以下内容将域下的所有请求重定向到正在建设的文件夹:
RewriteEngine On
RewriteCond %{REQUEST_URI} !=/underconstruction/
RewriteRule ^ /underconstruction/ [R=301]
但这似乎不起作用。
我试过这个(它有效):
RewriteEngine On
RewriteCond %{REQUEST_URI} !=/underconstruction/underconstruction.html
RewriteRule ^ /underconstruction/underconstruction.html [R=301]
但我没有看到它附带的图像和 CSS。
有谁有想法吗?