Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何设置重定向如下:
重定向这些:
http://www.domain.com.au/browse-stores/storeA http://www.domain.com.au/browse-stores/storeB
对这些
http://www.domain.com.au/browse-stores?centre=storeA http://www.domain.com.au/browse-stores?centre=storeB
将其放入文档根目录的 htaccess 文件中:
RewriteEngine On RewriteRule ^browse-stores/(.+)$ /browser-stores?centre=$1 [L,QSA]
如果您确实想重定向浏览器以使地址栏中的 URL 发生变化,请将括号中的标志更改为[L,QSA,R=301].
[L,QSA,R=301]