有没有办法在 nginx 中进行模板化?例如,如果我有这样的文件:
{header}
<h1>This is a header</h1>
This is not a header
{footer}
然后使用 NGINX 替换{header}
为:
<!DOCTYPE html>
<html>
<head><title>This is a title</title></head>
<body>
和{footer}
类似的东西。这样做的目的是能够在 html 文件之间共享代码。这在 nginx 中可行吗,还是我必须使用反向代理来使用可以进行模板化的其他服务器程序?
答案1
不,您不能使用 nginx 来做到这一点,您必须找到其他方法来做到这一点。