将IP地址重定向到.htaccess中的域名

roqulrg3  于 2022-11-16  发布在  其他
关注(0)|答案(2)|浏览(131)

我正在尝试将IP地址重定向到我的网站的域名。这是我的.htaccess文件:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On

RewriteBase /

RewriteCond %{HTTP_HOST} ^198\.50\.227\.185 [nc]
RewriteRule ^(.*)$ http://www.allrealfood.com/$1 [r=301,nc,L]

RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

我不知道怎么才能让它工作。

fcwjkofz

fcwjkofz1#

301(永久)重定向:

Redirect 301 / http://mt-example.com/

302(临时)重定向:将整个网站指向不同的缓存URL。

Redirect 302 / http://mt-example.com/

将index.html重定向到特定的子文件夹:

Redirect /index.html http://example.com/newdirectory/

需要了解更多go here

laawzig2

laawzig22#

示例:
重定向302 200.137.132.201/

相关问题