这是我的htaccess mod重写规则。它不返回查询字符串。
返回查询字符串缺少什么?
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule ^file/(.*)$ /index.php?url=$1&%{QUERY_STRING} [NC,L]
网址字符串:
http://cdn.test.dev/file/1/1/1/assets/dgdsfg.jpg?some=param
结果:
1/1/1/assets/dgdsfg.jpg
答案 0 :(得分:1)
尝试添加[QSA,NC,L]
而不是[NC,L]