用 .htaccess 重写链接
我正在尝试用 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Marc 所说,你需要一些东西来区分脚本文件名和其他部分:
但是如果第一个 (.*) 之后是查询字符串,那么使用它:
as
Marc
said you need something to distinguish the script file name and other parts:But if after first (.*) is query string , so use it: