我必须使用htaccess为我的网站制作一个维护页面,我在互联网上搜索过,只能找到重定向的片段/脚本,但我只是希望它在页面上为人们显示一条消息,但是不适用于指定的ip-adres。因此,当我在htaccess中启用脚本时,它必须在每个页面/文件(= css等)上显示一条消息,除了我的ip-adres
谢谢,清酒
答案 0 :(得分:1)
这应该有用。
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !=123.45.67.89
RewriteRule ^ /construction.php [R=301,L]
编辑:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !=123.45.67.89
RewriteCond %{REQUEST_URI} !^/construction.php
RewriteRule ^ /construction.php [L]