通过 mod 重写删除特定文件名

发布于 2024-12-13 05:43:05 字数 141 浏览 0 评论 0原文

我如何通过 .htaccess

www.example.com/foo/test.php => 中的 mod 重写来完成以下操作www.example.com/foo

另外,此重写不需要反映在浏览器的地址栏中,即不需要是重定向。

How would I accomplish the following via mod rewrite in the .htaccess

www.example.com/foo/test.php => www.example.com/foo

Also, this rewrite does not need to be reflected in the browser's address bar, i.e. doesnt need to be a redirect.

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

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

发布评论

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

评论(1

柠檬心 2024-12-20 05:43:05

要完全匹配,它看起来像这样:

RewriteRule foo/test.php /foo [L]

如果您只想匹配 test.php 部分,它看起来像这样:

RewriteRule ^(.*)/test.php /$1 [L]

任一规则都将接受请求 www.example.com/foo/test.php 并在内部将其重写为 /foo 并将 /foo 提供给浏览器。

To match exactly it would look like this:

RewriteRule foo/test.php /foo [L]

If you want to match against only the test.php part, it would look like this:

RewriteRule ^(.*)/test.php /$1 [L]

Either rule will take a request www.example.com/foo/test.php and internally rewrite it to /foo and serve /foo to the browser.

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