gpt4 book ai didi

php - 如何禁用 302 重定向

转载 作者:太空宇宙 更新时间:2023-11-03 17:01:32 25 4
gpt4 key购买 nike

我的网站托管在由 Ubuntu 和 LAMP 提供支持的 VPS 上。

如果没有 www,我无法使用指向任何页面的直接链接。

那是输入 url http://example.com/secondpage将重定向到 http://www.example.com/ .第二页丢失了。但是http://www.example.com/secondpage工作完美。我尝试更改 .htaccess,但没有效果。

你能帮帮我吗?

最佳答案

您需要在您的 .htaccess 中使用它:

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

如果这不起作用,你可以使用这个:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [nc]
RewriteRule ^(.*)$ http://www.example.com/$1 [r=301,nc]

关于php - 如何禁用 302 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11348818/

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