我们想要一切来自文件夹商店,这是我网站根目录中的一个文件夹,指向http://qwerty-demos.co.uk/path/under-construction.html
我目前有
<IfModule mod_rewrite.c>
RewriteEngine on
Redirect 301 /store/ http://qwerty-demos.co.uk/path/under-construction.html
</IfModule>
如果我只是去qwerty-demos.co.uk/store,那么效果很好,但是一旦转到qwerty-demos.co.uk/store/cart,例如单词cart会被附加到重定向网址,例如下construction.htmlcart
请有人指出我正确的方向。
干杯
答案 0 :(得分:1)
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^store.*$ http://qwerty-demos.co.uk/path/under-construction.html[r=301,L]
试试希望它有所帮助