apache 映射url为其他目录

两个方法

1.在网站根目录下建立符号链接

    注意,对符号链接的目标目录必须有访问权限

2.修改配置文件,使用alias机制

Alias /image /ftp/pub/image
<Directory /ftp/pub/image>
Order allow,deny
Allow from all
</Directory>

参考:http://apache.jz123.cn/urlmapping.html

你可能感兴趣的:(apache 映射url为其他目录)