1
我都試過,但它似乎不工作:htaccess的/ mod_rewrite的不起作用
RewriteCond %{QUERY_STRING} ^?var=10&view=3$
RewriteRule ^/index.php$ http://www.domain.com/index.php?var=11&view=1 [L,R=301]
我都試過,但它似乎不工作:htaccess的/ mod_rewrite的不起作用
RewriteCond %{QUERY_STRING} ^?var=10&view=3$
RewriteRule ^/index.php$ http://www.domain.com/index.php?var=11&view=1 [L,R=301]
RewriteCond %{QUERY_STRING} ^var=10&view=3$
RewriteRule ^index.php$ http://www.domain.com/index.php?var=11&view=1
見common pitfalls(項目#2),在.htaccess文件中,領先「 /「 沒有必要。另外,領先的「?」在RewriteCond中是不必要的。