我如何重定向到子目录而不使用.htaccess在url中显示它?

时间:2013-07-13 18:50:34

标签: .htaccess redirect url-rewriting url-redirection

我有一个目录/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]

1 个答案:

答案 0 :(得分:0)

RewriteEngine on
RewriteBase /
RewriteRule !^store/ /store%{REQUEST_URI}