我正在编写一个脚本来构建一个动态网站,该网站是通过加载外部组件来创建的。
DocumentRoot 位于 /sites/website/public 组件目录位于 /sites/website/components
我想到达每个组件的数据目录取决于请求的 url。
例如:
网址:
http://ibuildmywebsite/component-data/randomimage/demo/swan04090044_small.jpg
应该获取文件 /sites/website/components/randomimage/data/demo/swan04090044_small.jpg
我怎样才能做到这一点?我更喜欢一种可以放在 .htaccess (如果有的话)中的方法,而不是修改虚拟主机定义。
谢谢!