0

有人知道我会在 NGINX 中做什么来实现这一点吗?

AddHandler 应用程序/x-httpd-php .ws

我需要将 .ws 文件读取为 php

4

1 回答 1

0

如果您的 conf 看起来像:

    location ~ \.php {
            fastcgi_param   SCRIPT_FILENAME  $document_root$fastcgi_script_name;  
            fastcgi_pass    127.0.0.1:9001;  
    }

那么你会这样做:

如果您的 conf 看起来像:

    location ~ \.(php|ws) {
            fastcgi_param   SCRIPT_FILENAME  $document_root$fastcgi_script_name;  
            fastcgi_pass    127.0.0.1:9001;  
    }

不是从 php 更改为 (php|ws)

于 2013-06-28T16:57:19.110 回答