本文介绍了为什么我重写规则禁止额外$ _GET数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用这个重写规则为我的整个域:
I'm using this rewrite rule for my whole domain:
RewriteRule ^([A-Za-z0-9/-]+)$ /index.php?path=$1
因此,例如,我的网址是这样的:
So for example, my urls look like this:
问题是,当我想手动添加特定的 $ _ GET
,就像这样:
The problem is when I want to manually add a specific $_GET
, like this:
我记得这对一些网站我一直在开发的工作,但它不会在这里工作。
I remember this has worked on some sites I've been developing, but it doesn't work here.
如何解决我的重写规则,这样我可以添加这样的 $ _ GET
数据?
How can I fix my RewriteRule so that I can add $_GET
data like this?
推荐答案
使用
RewriteRule ^([A-Za-z0-9/-]+)$ /index.php?path=$1 [QSA]
这篇关于为什么我重写规则禁止额外$ _GET数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!