htaccess 和服务器路由
在我的预览框中,我有多个开发站点。
-htdocs
--site1
--site2
--site3
----assets
----system
当我编写 CSS 时,我想将所有图像指向根目录(这将是实时服务器上的情况),即 /assets/img/file.jpg
我将如何更改每个站点的根目录
On my preview box I have multiple sites in dev.
-htdocs
--site1
--site2
--site3
----assets
----system
When I'm writing my CSS I want to point all images to the root, (which would be the case on the live server), i.e. /assets/img/file.jpg
How would I change the root for each site
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎误解了 mod_rewrite 的作用。
Mod_rewrite 不会重写链接,它会重写请求,这在您的场景中是不可能的。
我相信您的情况的正确解决方案是使用 Apache HTTP Server 核心支持的基于名称的虚拟主机。
You seem to have misunderstood what mod_rewrite does.
Mod_rewrite does NOT rewrite links, it rewrites requests, which would not be possible in your scenario.
I believe that the correct solution in your case is to use name-based virtual hosts which is supported by the Apache HTTP Server core.