云服务器 ECS 网站访问出现 No input file specified 的解决方

云服务器 ECS 网站访问出现 No input file specified 的解决方法

当前问题共有如下(1)个解决方案
  • 光山居士
    光山居士

    处理办法

    IIS 解决方案
    Apache 解决方案
    Nginx 解决方案
    IIS 配置解决方法

    方法一:
    改 PHP.ini 中的 doc_root 行,打开ini文件注释掉此行,然后重启IIS。
    方法二:
    修改 php.ini,找到
    ;cgi.force_redirect = 1

    去掉前面分号,把后面的 1 改为 0,即:
    cgi.force_redirect = 0
    Apache 配置解决方案

    打开 .htaccess 在 RewriteRule 后面的 index.php 教程后面添加一个 “?”

    完整代码如下

    .htaccess
    RewriteEngine on
    RewriteCond $1 !^(index.php|images|robots.txt)
    RewriteRule ^(.*)$ /index.php?/$1 [L]
    总结:

    Apache 把 .php 后缀的文件解析为 PHP。可以将任何后缀的文件解析为 PHP,只要在以下语句中加入并用空格分开。这里以添加一个 .phtml 来示例。

    AddType application/x-httpd-php .php .phtml
    为了将 .phps 教程作为 PHP 的源文件进行语法高亮显示,还可以加上:

    AddType application/x-httpd-php-source .phps
    用通常的过程启动 Apache(必须完全停止 Apache 再重新启动,而不是用 HUP 或者 USR1 信号使 Apache 重新加载)。

    Nginx配置解决方案

    php.ini(/etc/php5/cgi/php.ini)的配置中这两项:
    cgi.fix_pathinfo=1 (这个是自己添加的)
    doc_root=
    nginx 配置文件 /etc/nginx/sites-available/default :
    location ~ .php$ {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME /var/www/nginx-default$fastcgi_script_name;
    include fastcgi_params;
    }
    配置完以上部分,重启一下service nginx restart。

上一篇:云服务器 ECS Apache、Nginx 配置支持跨域访问,如何让 A
下一篇:云服务器 ECS Linux MongoDB 启动报错:child process failed,错