gpt4 book ai didi

.htaccess - 隐藏index.php和url中的所有变量

转载 作者:行者123 更新时间:2023-12-01 23:33:54 25 4
gpt4 key购买 nike

我正在使用 mod_rewrite 将虚拟子域作为我网站中的变量并想添加一条规则来隐藏index.php和url中的所有变量但无法让它发挥作用。请问有什么建议吗?这是我实际的 .htaccess:

RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.mysite\.com$
RewriteCond %{HTTP_HOST} ^(.*)\.mysite\.com$
RewriteRule ^$ /index.php?member=%1 [P,L]

最佳答案

您最好的选择可能是发送支持票证并使用域通配符。

.htaccess 看起来很完美。

详细说明:

您需要要求托管公司添加“通配符”DNS 设置,以将所有子域转发到 Web 根目录。例如 *.domain.com 到 www.domain.com。他们可以通过在 DNS 设置中添加条目来做到这一点

HTACCESS 代码

<IfModule mod_rewrite.c>

# Redirect to user blog (with any trailing path)
RewriteCond %{HTTP_HOST} !^www. [NC]
RewriteCond %{HTTP_HOST} ^([a-z0-9]).example.com(.*)$ [NC]
RewriteRule ^(.*)$ /index.php?member=$1 [R=301,L]

## Otherwise, force www;
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/ [R=301,L]

</IfModule>

关于.htaccess - 隐藏index.php和url中的所有变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7697362/

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