gpt4 book ai didi

php - 使用 .htaccess 删除 url 中的双斜杠

转载 作者:搜寻专家 更新时间:2023-10-31 21:47:27 27 4
gpt4 key购买 nike

我想删除此网址中的双斜杠 ANYWARE(当然不包括 http://中的双斜杠): http://localhost:7000/something/something/something/something/something/something/something//

我研究和重定向的唯一代码是:

RewriteEngine On
RewriteCond %{THE_REQUEST} //
RewriteRule ^.*$ $0 [R=302,L,NE]

但不幸的是,它返回这个 URL:

http://localhost:7000/C:/xampp/htdocs/something/something/something/something/something/something/something/

是的,它删除了双斜线,但 URL 是错误的。

最佳答案

尝试在规则的目标中使用绝对路径:

RewriteEngine On
RewriteCond %{THE_REQUEST} //
RewriteRule ^.*$ /$0 [R=302,L,NE]

关于php - 使用 .htaccess 删除 url 中的双斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55409123/

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