重定向 withwithout 查詢引數
沒有查詢引數的重定向:
RewriteRule ^route$ /new_route_without_query [L,R=301,QSD]
使用查詢引數重定向:
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^/?route$ %{REQUEST_URI}?query=param1&query2=param2 [NC,L,R=301]
沒有查詢引數的重定向:
RewriteRule ^route$ /new_route_without_query [L,R=301,QSD]
使用查詢引數重定向:
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^/?route$ %{REQUEST_URI}?query=param1&query2=param2 [NC,L,R=301]