我有一个目录/store
,我想重定向www.example.com
到www.example.com/store
.. 而不/store
在 url 中显示。
我也需要当我点击任何/store
类似的产品时/store/product1.html
,我需要去www.example.com/store/Product1.html
而不显示/store
在 URL 中。
我试过这个,它重定向到 /store 但它仍然在 url 上:
RewriteEngine on
RewriteCond %{REQUEST_URI} !^store/
RewriteRule ^(.*)$ store/$1 [L]