nginx - 提供来自子域的静态内容
有没有一种方法可以设置 nginx 来提供来自 static.example.com 的静态内容 - 而不必修改我的所有 php 文件来反映从哪里获取图像?
我希望我可以在 nginx conf 文件中做一些技巧。
Is there a way I can setup nginx to serve static content from static.example.com - without having to modify all my php files to reflect where to get the images from?
I was hoping there was some trick I can do in the nginx conf files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能属于 ServerFault,但我认为您正在寻找类似的内容:
因此,如果您的 PHP 文件引用文件 /assets/images/background.png,则对该文件的调用将被定向到 static.example.com /images/background.png
希望这有帮助!
this probably belongs on ServerFault, but I think you're looking for something like this:
So if your PHP files refer to a file /assets/images/background.png, the calls to that file will be directed to static.example.com/images/background.png
Hope this helps!