是否可以在apache中路由任何URL以始终指向VirtualHost中的DocumentRoot?
因此f.ex:/foo/bar/
将始终请求/
。
我在想(请原谅我的新手伪代码):
AliasMatch ^/.* DocumentRoot
答案 0 :(得分:0)
以下似乎是大多数CMS使用的模式。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>