0

/storeリダイレクトwww.example.comしたいディレクトリがありwww.example.com/storeます.. /storeURLに表示せずに。

/storeまた、同様の製品をクリックすると、URLに表示さ/store/product1.htmlれずに移動する必要があります。www.example.com/store/Product1.html/store

私はこれを試しました、それは /store にリダイレクトされますが、まだURLにあります:

RewriteEngine on
RewriteCond %{REQUEST_URI} !^store/
RewriteRule ^(.*)$ store/$1 [L]
4

1 に答える 1

0
RewriteEngine on
RewriteBase /
RewriteRule !^store/ /store%{REQUEST_URI}
于 2013-07-16T10:55:52.267 に答える