gpt4 book ai didi

.htaccess - htaccess 页面重定向,除了我的 ip

转载 作者:行者123 更新时间:2023-12-04 05:49:16 25 4
gpt4 key购买 nike

我正在尝试进行 .htaccess 重定向,它可以执行以下操作:

  • 将页面 A 重定向到页面 B;
  • 重定向除我的 IP 之外的所有流量。

  • 你能帮我吗?

    最佳答案

    重定向到哪里

    ErrorDocument 403 [重定向到何处]
    命令拒绝,允许

    屏蔽所有人

    拒绝所有人

    除了...

    允许来自 [YourIPGoesHere]

    完整代码示例:

    ErrorDocument 403 http://www.google.com/
    order deny,allow
    deny from all
    allow from 173.194.41.134

    编辑:

    你也可以试试这个:
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REMOTE_HOST} !^173\.194\.41\.134
    RewriteCond %{REQUEST_URI} !/somethingHere\.html$
    RewriteRule .* /somethingHere.html [R=302,L]

    关于.htaccess - htaccess 页面重定向,除了我的 ip,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10278730/

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