apache aliasmatch返回404

时间:2014-06-21 02:54:50

标签: apache wamp alias

我的httpd.conf文件中有以下行:

AliasMatch ^/myProject/src/foobar/(?:.*)$ /myProject/src/foobar/index.html

我想要发生的是,任何符合http://localhost/myProject/src/foobar/(.*)$模式的网址都会重定向到我在http://localhost/myProject/src/foobar/停留的index.html文件。相反,当我尝试访问foobar文件夹中的任何文件时,我得到404。是什么给了什么?

1 个答案:

答案 0 :(得分:1)

语法:AliasMatch正则表达式file-path|directory-path

例子:
AliasMatch ^/one c:/wamp/www/index.php [windows]
AliasMatch ^/icons(.*) /usr/local/apache/icons$1 [linux]