http://example.com/products/2-uncategorised/
http://example.com/products/2-uncategorised/2-aaa-bb-ccccc
我有这种结构,其中产品是带有文章的特色页面。我想要的只是阻止对类别和相关文章的访问。
所以,http://example.com/products/2-uncategorised/
或者http://example.com/products/2-uncategorised/2-aaa-bb-ccccc
应该重定向到http://example.com/products
.
我知道的唯一方法是:
#RedirectMatch 301 ^/products/.*$ http://www.example.com/products
注意:如果我更改文章的权限,仅对注册用户可用,如果用户未注册,则文章将从精选页面中删除(错误,此页面应该是公共的)。
我需要保留特色页面中的所有文章,并阻止单个文章及其所属类别的访问。
问题:还有另一种方法没有.htaccess
?