我需要为网站重新启动设置一个启动页面。所有请求都需要重定向到splash.php
... 但此文件需要访问/splash
包含启动页面中使用的图像的目录。
我不确定确切的规则需要在什么范围内htaccess
......另外,如果所有请求都被路由到/splash
并且实际的启动页面是索引会更好吗?
我在 SO 上找到了一个很棒的脚本:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !=123.45.67.89
RewriteRule index.php$ /splash.php [R=301,L]
类似的东西
RewriteEngine On
RewriteCond %{REQUEST_URI} !(image\.png)$
RewriteRule (.*) /splash.html [QSA]
至少应该给你一个起点......