我想這個頁面htaccess的重定向重定向htaccess的PHP
products_filter.php?f16%5B0%5D=bla+bla+bla&cPath=72&M_ID=12x
到
products_filter.php?f16%5B0%5D=bla+bla&cPath=72&M_ID=12x
我想這(和許多其他方式)
RewriteCond %{QUERY_STRING} ^f16%5B0%5D=bla+bla+bla$
RewriteRule ^products_filter\.php$ http://www.example.com/products_filter.php?f16%5B0%5D=bla+bla&cPath=72&M_ID=12x [L,R=301]
我在做什麼錯這裏?
你太快! –
試過這個,不工作 –
嗯看着你的問題我意識到你正在使用相當多的特殊字符,需要逃脫。看我編輯的版本。 – anubhava