gpt4 book ai didi

.htaccess 使用和不使用尾部斜杠

转载 作者:行者123 更新时间:2023-12-02 05:04:57 27 4
gpt4 key购买 nike

使用 .htaccess,我怎样才能让我的网站能够执行此操作。这是我已有的。

RewriteEngine on
RewriteBase /
RewriteRule ^(.*)/(.*)$ sites/index.php?url=$1&page=$2

由此,我能够浏览到: http://domain.com/sites/example/这完全没问题。我想要做的是浏览到 http://domain.com/sites/example没有尾部斜杠,但它总是返回一个错误,找不到页面。

到目前为止,Google 的所有结果都让我失望。

谢谢。

最佳答案

尝试将正则表达式更改为:

RewriteRule ^([^/]+)/(.*?)/?$ sites/index.php?url=$1&page=$2

第一个 (.*) 是贪婪的,会吞噬一切。

关于.htaccess 使用和不使用尾部斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12944286/

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