0

伙计们,我想要文件夹存储中的所有内容,该文件夹存储是我网站根目录中的一个文件夹,指向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 就会附加到重定向 URL,例如建设中.htmlcart

谁能指出我正确的方向。

干杯

4

1 回答 1

1
 Options +FollowSymLinks
 RewriteEngine on
 RewriteRule ^store.*$ http://qwerty-demos.co.uk/path/under-construction.html[r=301,L]

试试这个希望它有帮助

于 2013-03-25T11:58:02.373 回答