如何根据 MIME 类型在 Apache 中代理文件?我想将 PHP-FPM 与 FastCGI 结合使用,但推荐的解决方案ProxyPassMatch
很笨重,使用起来很麻烦,而且总体上不利。我该如何根据 MIME 类型进行代理?
答案1
您还可以使用处理程序方法(2.4.10 及更高版本):
<FilesMatch \.php>
SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/"
</FilesMatch>
如何根据 MIME 类型在 Apache 中代理文件?我想将 PHP-FPM 与 FastCGI 结合使用,但推荐的解决方案ProxyPassMatch
很笨重,使用起来很麻烦,而且总体上不利。我该如何根据 MIME 类型进行代理?
您还可以使用处理程序方法(2.4.10 及更高版本):
<FilesMatch \.php>
SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/"
</FilesMatch>