RewriteRule不适用于" /"

时间:2018-05-04 22:14:43

标签: php apache .htaccess mod-rewrite

我在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; - "工作和" /"不行吗?

0 个答案:

没有答案