我想在.htaccess(301重定向)中替换url
来自www.domain.com/page.html?locale=xx
致www.domain.com/xx/page.html
我无法找到正确的文档进行修复。
答案 0 :(得分:0)
您可以在DOCUMENT_ROOT/.htaccess
文件中使用此代码来删除查询字符串:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^locale=.+ [NC]
RewriteRule ^page\.html$ $0? [L,NC,R=302]