mod_rewrite后获取变量
我有一组遵循以下 htaccess 规则的产品页面:
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_URI} ^/([0-9]+)\-(.+)\.html
RewriteRule ^(.*)$ /product/index.php?prod=%1-%2 [L]
将它们重写为:example.com/123-1234.html。
我的问题是我无法再将额外的 $_GET 变量传递到页面 - IE:example.com/123-1234.html?coupon=something123。
有什么办法可以做到这一点吗?
I have a set of product pages that obey the following htaccess rule:
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_URI} ^/([0-9]+)\-(.+)\.html
RewriteRule ^(.*)$ /product/index.php?prod=%1-%2 [L]
Which rewrites them to: example.com/123-1234.html.
My problem is that I can no longer pass additional $_GET variables to the page - IE: example.com/123-1234.html?coupon=something123.
Is there any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找 QSA,查询字符串附加
Your looking for QSA, Query String Append
添加 QSA 标志以传递现有查询字符串参数
还将匹配编辑为 。和 ^.*$ 在这种情况下是等效的
Add the QSA flag to pass along existing query string params
Also edited match as . and ^.*$ are equivalent in this case