-2

我需要为网站重新启动设置一个启动页面。所有请求都需要重定向到splash.php... 但此文件需要访问/splash包含启动页面中使用的图像的目录。

我不确定确切的规则需要在什么范围内htaccess......另外,如果所有请求都被路由到/splash并且实际的启动页面是索引会更好吗?

4

2 回答 2

0

我在 SO 上找到了一个很棒的脚本:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !=123.45.67.89
RewriteRule index.php$ /splash.php [R=301,L]
于 2012-11-28T18:26:48.467 回答
0

类似的东西

RewriteEngine On
RewriteCond %{REQUEST_URI}  !(image\.png)$
RewriteRule (.*)  /splash.html [QSA]

至少应该给你一个起点......

于 2012-11-28T18:28:42.340 回答