将IP地址重定向到域名 - 无效

时间:2014-12-09 11:28:38

标签: .htaccess redirect rewrite http-status-code-301

我正在尝试通过将某个ip重定向到域名来修复ip规范化。我已经遵循了许多解决方案,但似乎没有任何解决方案。 .htaccess文件:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{THE_REQUEST} ^GET\ /.*/index\.(php|html)\ HTTP
RewriteCond %{HTTP_HOST} ^domain\.com [NC]
RewriteCond %{HTTP_HOST} ^xxx\.xxx\.xxx\.1$ [NC,OR] //ip address
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

知道为什么这个问题没有修复?!

0 个答案:

没有答案