我需要正则表达式来执行以下操作:
我的(不完整)解决方案是:
url.rewrite-once = (
".*\?(.*)$" => "/index.php?$1&full_request=$0"
)
但这里的错误是,如果没有“?”在网址中我得到“404 not found”。
先谢谢你的帮助, dexcs
答案 0 :(得分:1)
试试这个:
url.rewrite-once = (
"^/[^?]*(\?(.*))?$" => "/index.php?$1&full_request=$0"
)