用 .htaccess 重写链接

发布于 2024-12-10 13:28:45 字数 181 浏览 0 评论 0原文

我正在尝试用 .htaccess 文件重写链接。基本的东西,但由于某种原因它不起作用。我需要文件名,在 .php 之前作为 URL 中的最后一个单词。我在这里缺少什么?

RewriteRule ^/product/(.*)$ /incl/static/products/$1.php [NC,L]

I am trying to rewrite links with .htaccess file. Basic stuff, but for some reason it does not work. I need the name of the file, before .php to be the last word in URL. What am I missing here?

RewriteRule ^/product/(.*)$ /incl/static/products/$1.php [NC,L]

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

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

发布评论

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

评论(1

趁年轻赶紧闹 2024-12-17 13:28:45

正如 Marc 所说,你需要一些东西来区分脚本文件名和其他部分:

RewriteRule ^products/script/(.*)/(.*)$    $1.php?$2&%{QUERY_STRING}

但是如果第一个 (.*) 之后是查询字符串,那么使用它:

RewriteRule ^products/script/(.*)$    $1.php?%{QUERY_STRING}

as Marc said you need something to distinguish the script file name and other parts:

RewriteRule ^products/script/(.*)/(.*)$    $1.php?$2&%{QUERY_STRING}

But if after first (.*) is query string , so use it:

RewriteRule ^products/script/(.*)$    $1.php?%{QUERY_STRING}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文