将IP重定向到域名的简单HTACCESS问题

发布于 2024-10-19 18:12:24 字数 403 浏览 2 评论 0原文

我希望使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

昨迟人 2024-10-26 18:12:24

现在已经很老了,但也许你的意思是 RewriteCond %{REMOTE_ADDR}

Pretty old now, but maybe you meant RewriteCond %{REMOTE_ADDR}

把人绕傻吧 2024-10-26 18:12:24

看起来您可能只是忘记了一个 ^ ,也许还有一个 $ 或两个...没有理由这不起作用:

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^123\.45\.67\.89$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

Looks like you probably just forgot a ^ and maybe a $ or two... No reason this shouldn't work:

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^123\.45\.67\.89$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文