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]
但它不适用于test。请帮忙。