我正在尝试将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
我无法弄清楚如何让它发挥作用。
答案 0 :(得分:0)
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