本文针对apache的alias给出几个实例,供大家学习参考。
Alias /icons/ "D:/wamp/bin/apache/Apache2.2.17/icons/"
访问http://localhost/icons/正常,访问http://localhost/icons 404
Alias /icons "D:/wamp/bin/apache/Apache2.2.17/icons"
访问http://localhost/icons自动加上后面的/,正常。
Alias /icons "D:/wamp/bin/apache/Apache2.2.17/icons/"
访问http://localhost/icons自动加上后面的/,正常。
Alias /icons/ "D:/wamp/bin/apache/Apache2.2.17/icons"
访问http://localhost/icons/xx.gif,404,访问http://localhost/icons 404 Not Found。
由此,给出结论:Alias后面的虚拟路径后面不要加多余的/,后面的文件系统路径加不加/就随便你了。