如何用.htaccess隐藏多个子文件夹?

时间:2012-10-21 05:35:02

标签: .htaccess web hide subdirectory

http://www.example.com/blog/demo/first-post

http://www.example.com/blog/test/second-post

我想将上面的网址重写为

http://www.example.com/first-post

http://www.example.com/second-post

我用过:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /demo/$1 [L]

但它不适用于 测试 。请帮忙。

0 个答案:

没有答案