nginx - 提供来自子域的静态内容

发布于 2024-09-12 09:42:48 字数 122 浏览 9 评论 0原文

有没有一种方法可以设置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑忘罢 2024-09-19 09:42:48

这可能属于 ServerFault,但我认为您正在寻找类似的内容:

rewrite ^(/assets/)(.*)$ http://static.example.com/$2 permanent;

因此,如果您的 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:

rewrite ^(/assets/)(.*)$ http://static.example.com/$2 permanent;

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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文