我有一个目录/store
我想将www.example.com
重定向到www.example.com/store
..而不会在网址中显示/store
。
我也需要点击/store
/store/product1.html
中的任何产品,我需要转到www.example.com/store/Product1.html
而不在网址中显示/store
。
我试过这个,它重定向到/ store但它仍然在url:
RewriteEngine on
RewriteCond %{REQUEST_URI} !^store/
RewriteRule ^(.*)$ store/$1 [L]
答案 0 :(得分:0)
RewriteEngine on
RewriteBase /
RewriteRule !^store/ /store%{REQUEST_URI}