Apache - 将所有流量重定向到文件夹

时间:2017-10-26 23:41:31

标签: apache .htaccess mod-rewrite

我想使用VirtualHost将所有流量重定向到/。

例如:

/ => /something
/foo => /something
/blog/foo => /something
/something/blog/post => /something/blog/post

我试过了,但我认为它还在寻找:

RewriteEngine On
RewriteCond %{REQUEST_URI} !^/something
RewriteRule ^(.*)$ /something/$1 [NC,L]

0 个答案:

没有答案