gpt4 book ai didi

.htaccess - 想要重定向除我以外的所有访客

转载 作者:行者123 更新时间:2023-12-03 23:13:16 26 4
gpt4 key购买 nike

基本上,我将要在网站上开始工作,我希望可以将其添加到.htaccess文件(或其他地方)中,使其能够像下面的伪代码一样工作:(我的ip将代替127.0.0.1 )

if (visitors_ip <> 127.0.0.1)
redirectmatch ^(.*)$ http://www.example.com/under-construction.html


希望这是有道理的...

最佳答案

那将是something like

RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.1

RewriteCond %{REQUEST_URI} !/mypage\.html$

RewriteRule .* http://www.anothersite.com/mypage.html [R=302,L]


正如 Andrew所指出的,如果您重定向到同一域,则%{REQUEST_URI}条件可避免无限循环。

作为 Xorax评论 almost 9 years later


您不应该使用 REMOTE_HOST,它在许多情况下都会失败。您应该使用 REMOTE_ADDR
cf“ difference between REMOTE_HOST and REMOTE_ADDR

关于.htaccess - 想要重定向除我以外的所有访客,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/293285/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com