假设我有带查询字符串的URL,即:
/DesignPatterns
使用mod_rewrite,如何将它们重定向到:
/index.php?book=DesignPatterns
是否更正以下内容?
RewriteCond %{QUERY_STRING} (\w+)
RewriteRule ^index.php?book=%1? [L,R=301]
PS:原始问题:如何将查询字符串变量与mod_rewrite匹配? (2月12日' 10,Patrick McElhaney,我要求他的许可)
答案 0 :(得分:1)
完整的解决方案是
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+) index.php?search=$1 [L]