以下是场景
该域名正在运行一个网站 -www.someserver.com
我要主持subdomain.someserver.com在我的计算机上。
假设所有图像文件都在目录'图片“”。
我不想将所有图片复制到我的机器上。那么,应该使用什么 Apache 指令来映射图片请求呢?例如
http://subdomain.someserver.com/img/image.png
到
答案1
在 subdomain.someserver.com 上:
Redirect /img http://www.someserver.com/img
在www.someserver.com上:
AliasMatch (.*)$ /location/of/home/directory/$1