我一定是个白痴,因为我无法解决这个问题。
我有一个网址:www.site.com.au/products/product-name.html
我需要将这些重定向到:www.site.com.au/product-name.html
所有链接都是动态的,文件夹不存在。我用什么重写规则来完成这个?
这是我到目前为止所得到的:
RewriteCond %{HTTP_HOST} ^(www|test)\.site\.com\.au
RewriteCond %{REQUEST_URI} ^(/products/)
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule ^.+\.html$ ${lc:%{REQUEST_URI}} [NC,R=301,L]
只需要将位添加到远程 /products
谢谢。