Apache URL指向root

时间:2012-05-21 10:25:16

标签: apache url routing virtualhost

是否可以在apache中路由任何URL以始终指向VirtualHost中的DocumentRoot?

因此f.ex:/foo/bar/将始终请求/

我在想(请原谅我的新手伪代码):

AliasMatch ^/.* DocumentRoot

1 个答案:

答案 0 :(得分:0)

以下似乎是大多数CMS使用的模式。

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>