mod_rewrite 显示更简单的 URL?

发布于 2024-11-09 22:34:44 字数 475 浏览 0 评论 0原文

我希望在我的网站上显示此位置:

http://www.mywebsite.com/Facilities/Fishing/

向用户显示如下:

http://www.mywebsite.com/Fishing

我也希望用户能够访问该 (http://www.mywebsite.com/Fishing) URL,并在显示时被重定向(仅限内部)到 (http://www.mywebsite.com/Facilities/Fishing/) (http://www.mywebsite.com/Fishing) URL。

基本上我不希望用户看到该目录,即使它确实存在。

I want this location on my website:

http://www.mywebsite.com/Facilities/Fishing/

to display to the user as this:

http://www.mywebsite.com/Fishing

I also want users to be able to visit that (http://www.mywebsite.com/Fishing) URL, and be redirected (internally only) to (http://www.mywebsite.com/Facilities/Fishing/) WHILE being shown the (http://www.mywebsite.com/Fishing) URL.

Basically I don't want the user to ever see that directory, even though it does exist.

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

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

发布评论

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

评论(2

假面具 2024-11-16 22:34:44

使用重写规则:

RewriteRule ^Fishing/?$ /Facilities/Fishing/ [R=301,NC,L]

Using RewriteRule:

RewriteRule ^Fishing/?$ /Facilities/Fishing/ [R=301,NC,L]
一人独醉 2024-11-16 22:34:44

尝试:

RewriteRule ^Facilities/Fishing/?$ /Fishing/ [L]

这会砍掉设施位。

Try:

RewriteRule ^Facilities/Fishing/?$ /Fishing/ [L]

This chops off the Facilities bits.

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