我正在使用Nginx和php-fpm在Centos 7上使用CodeIgniter 3。 本地我的项目运作良好,但当我尝试将其转移到我的网站主机时,它没有。
我只是创建一些User.php控制器:
public function test(){
echo 'Hello World';
}
另外,我使用这个.htaccess:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond $1 !^(index\.php)
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
我可以调用控制器,但函数不起作用,它只会重定向到index.php而echo
不起作用。
我该如何解决这个问题?