将IP重定向到域名的简单HTACCESS问题
我希望使用 HTACCESS 将 IP 地址重定向到域名。因此,每当 IPaddress.com/subdir1/page1.html 显示时,它都会重定向到domainname.com/subdir1/page1.html
我尝试过此操作,但没有运气:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com [OR]
RewriteCond %{HTTP_HOST} ^123\.45\.67\.89
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
因为它仅将主IP地址重定向到主域,不是子目录 ips 到子目录域
谢谢 杰夫
I'm looking to redirect an IP address to a domain name using HTACCESS. So anytime the IPaddress.com/subdir1/page1.html shows up it'll redirect to domainname.com/subdir1/page1.html
I've tried this with NO LUCK:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com [OR]
RewriteCond %{HTTP_HOST} ^123\.45\.67\.89
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
Because it ONLY redirects the main IP address to the main domain, not subdirectory ips to subdirectory domains
Thank you
Jeff
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在已经很老了,但也许你的意思是 RewriteCond %{REMOTE_ADDR}
Pretty old now, but maybe you meant RewriteCond %{REMOTE_ADDR}
看起来您可能只是忘记了一个
^
,也许还有一个$
或两个...没有理由这不起作用:Looks like you probably just forgot a
^
and maybe a$
or two... No reason this shouldn't work: