thinkphp3
如果出现:Fatal error: Call to undefined function imagecreate() in /www/wwwroot/ht5/Lib/ORG/Util/Image.class.php on line 327 说明php.ini的gd扩展没有开启 如果出现404: 则修改配置如下: server { listen 9227; server_name xxx; index index.php index.html index.htm default.php default.htm default.html; root /www/wwwroot/ht5; #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则 #error_page 404/404.html; #SSL-END #ERROR-PAGE-START 错误页配置,可以注释、删除或修改 #error_page 404 /404.html; #error_page 502 /502.html; #ERROR-PAGE-END location / { if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1; } } location ~ \.php { fastcgi_pass 127.0.0.1:9000;