gpt4 book ai didi

apache - htaccess mod_rewrite 主机名

转载 作者:行者123 更新时间:2023-12-04 23:09:44 25 4
gpt4 key购买 nike

如果不匹配,我如何将域 url 重写为特定域名..

假设我希望它只匹配 example.com并且访问者来自服务器 ip (http://127.0.0.1/something/else) 或来自另一个域 (http://domain.com/something/else)

我怎样才能重写域名并保留所有其他参数,只是域名到 example.com(结果应该是:http://example.com/somthing/else)

最佳答案

尝试将这些规则添加到文档根目录中的 htaccess 文件中:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^(www\.)?example\.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L,R]

关于apache - htaccess mod_rewrite 主机名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13021893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com