我在wamp的本地测试UrlRewrite,我搜索这样做:
index.php?test = test123 to index / test123 with query string
我的.htaccess:
Options +FollowSymlinks
RewriteEngine on
# Rule
RewriteRule ^index/([a-z0-9]+)$ index.php?test=$1 [QSA,L]
它的工作但$ _GET [" test"]为空..如果我测试一下:
RewriteRule ^index-([a-z0-9]+)$ index.php?test=$1 [QSA,L]
它的工作。 $ _GET [" test"] =" test123"。
当分开时#34; - "工作和" /"不行吗?