我正在尝试通过将某个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>
知道为什么这个问题没有修复?!