gpt4 book ai didi

apache - htaccess 缺少 www

转载 作者:行者123 更新时间:2023-12-02 11:56:16 24 4
gpt4 key购买 nike

这是我的 .htaccess

AddDefaultCharset UTF-8

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /xcrud
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

这一切都很好,除非用户跳过 www 作为 URL 的一部分。有没有一种简单的方法可以更改此设置以避免 310 循环错误?一个 .htaccess 的完整示例会很棒,而不是 1 行。谢谢。

最佳答案

这解决了它。我无法让任何 301 语句发挥作用,但这个可以。

AddDefaultCharset UTF-8
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /demo2
RewriteCond %{HTTP_HOST} ^mathpdq\.com
RewriteRule ^(.*)$ http://www.mathpdq.com/demo2/$1 [R=permanent,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

关于apache - htaccess 缺少 www,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13331534/

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