lnmp 1.2 新建主机提示 Undefined index: SCRIPT_NAME;
lnmp 1.2通过 lnmp vhost add 命令新建网站并上传了网站文件后,提示 Undefined index: SCRIPT_NAME 错误,为什么会无法识别 SCRIPT_NAME的?基本上所有需要SCRIPT_NAME的网站都无法正常运行。
下面是自动生成的host 配置文件内容
server
{
listen 80;
#listen [::]:80;
server_name www.domain.com domain.com *.domain.com;
index index.html index.htm index.php default.html default.htm default.php;
root/home/wwwroot/www.domain.com;
include drupal.conf;
#error_page 404 /404.html;
location ~ [^/]\.php(/|$)
{
# comment try_files $uri =404; to enable pathinfo
try_files $uri =404;
fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
#include pathinfo.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
access_log/home/wwwlogs/www.domain.com.logaccess;
}
[ 本帖最后由 分头诗人 于 2015-8-5 16:38 编辑 ] 什么程序? Drupal
drupal.org 下载,drupal 7.x版本
页:
[1]