-1

我有一个想法,它有点复杂,我不知道如何去做。
例如,
我想将 123.456.789.10 从重定向http://mywebsite.com到,http://google.com但是
有一个临时页面,比如http://mywebsite.com/messages/go_away.html先显示大约 5-10
秒,然后让该页面自动将它们重定向到http://google.com
所以他们会在自动获取之前看到消息 5-10 秒重定向。

keep in mind i may want to add more than 1 IP address or range like this.
xxx.xxx.
xxx.xxx.
xxx.xxx.
and so on.

xxx.xxx。将是第一组 2 组数字我该怎么做?
提前致谢,

4

2 回答 2

0

您可以像这样使用元刷新

<meta http-equiv="refresh" content="10; url=http://google.com/">
于 2013-11-11T22:58:41.807 回答
0

第 1 步:DOCUMENT_ROOT/.htaccess在您的文件 中使用此规则:

RewriteEngine On

RewriteCond %{REMOTE_ADDR} !^(123\.456\.|789\.10|11\.12)
RewriteRule !^temp-page /temp-page.html [L,NC,R]

第2步:

然后在里面/temp-page.html使用这样的代码:

<meta http-equiv="refresh" content="5; url=http://www.google.com/">
<h1>This temporary page will redirect to www.google.com in 5 seconds</h1>
于 2013-11-11T23:00:25.337 回答