求教一个关于PHP多站点路径的有关问题

WBOY
Release: 2016-06-13 10:52:29
Original
838 people have browsed it

求教一个关于PHP多站点路径的问题
网站结构如下
root
  |--images
  |--B
  |--C

网站主域名 root.com 然后还有N个域名 比如b.com c.com
b.com指向目录B c.com指向目录c

服务器环境 window + iis  
请问如何能够让b.com c.com的程序能够调用images文件夹里的图片?排除另外启用一个域名作为资源域名的方法

服务器环境可更换为 window+apache/Nginx 最后万不得已的结果服务器可更换成linux系统(更换系统的代价非常大,能不更换则不更换。涉及到很多额外开发的桌软问题)

希望高手能赐教下。如何可以实现上面的东西。如果高手觉得简单,只需要给个思路和相关学习资料的地址即可~分不多。可再加分

------解决方案--------------------
iis 在iis管理器中的 全部网站 右键 -- 虚拟目录 -- 创建一个虚拟目录 images 指向 [d]:/root/images

apache 设置虚拟目录
ALIAS /images "[d]:/root/images"

Nginx 不知道

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template