.htaccess 重写规则失败,不知道为什么

发布于 2024-12-09 15:28:22 字数 226 浏览 3 评论 0原文

我的 .htaccess 中有这样一条规则:

RewriteRule ^(.*)/([A-Z])([^\/]+)/([^\/]+)/$ http://www\.google\.com

当我浏览器网址“http://127.0.0.1:8008/BeiJing/FangChan/”时,浏览器不会带我到 google.com,而是显示 404 err 页面。不知道为什么。

I've such a rule in my .htaccess:

RewriteRule ^(.*)/([A-Z])([^\/]+)/([^\/]+)/$ http://www\.google\.com

when I browser url "http://127.0.0.1:8008/BeiJing/FangChan/",the browser doestnt take me to google.com,but show me a 404 err page instead. dont know why.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

往日 2024-12-16 15:28:22

请改用这个,因为您的 (.*)/ 破坏了它

RewriteRule ^([A-Z])([^\/]+)/([^\/]+)/$ http://www\.google\.com

Use this one instead, because your (.*)/ breaks it

RewriteRule ^([A-Z])([^\/]+)/([^\/]+)/$ http://www\.google\.com
橘寄 2024-12-16 15:28:22

试试这个:

RewriteRule ^([^/]+)/([^/]+)/?$

这将匹配两层深度,带或不带尾部斜杠。如果您需要更深入,您可以重复该模式,以“/?”结尾。

Try this out:

RewriteRule ^([^/]+)/([^/]+)/?$

That'll match two levels deep, with or without a trailing slash. If you need to go deeper, you can just repeat the pattern, ending with a "/?".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文