我需要一些重写方面的帮助。我在帖子中搜索一个简单的解决方案,但是不能破解它。
我有很多不正确的网址。我需要重写一些网址,其中双斜线之前的所有内容都可以。
目前的网址 http://www.website.com.au/category/subcategory//product-name-here.html
必填网址 http://www.website.com.au//product-name-here.html
如果有人可以提供一个例子,我会非常感激
布伦丹
答案 0 :(得分:0)
这样的事情应该有效:
location ~ ^/category/subcategory {
rewrite ^/(.*) /$1;
}