我的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。是什么给了什么?
答案 0 :(得分:1)
语法:AliasMatch正则表达式file-path|directory-path
例子:
AliasMatch ^/one c:/wamp/www/index.php
[windows]
AliasMatch ^/icons(.*) /usr/local/apache/icons$1
[linux]