0

我在 Apache 配置中有问题。在我的本地主机上

return $this->redirect('ex::dashboard'); 

完美执行。

但是当我将代码上传到服务器时。它以空白页结束。

可能是什么原因?我试图调试..但没有成功。

我可以访问服务器并检查了大部分 PHP 参数。

'./configure' '--disable-fileinfo' '--disable-pdo' '--enable-bcmath' 
'--enable-calendar' '--enable-exif' '--enable-ftp' '--enable-gd-native-ttf' 
'--enable-libxml' '--enable-mbstring' '--enable-soap' '--enable-sockets' 
'--enable-zip' '--prefix=/usr/local' '--with-apxs2=/usr/local/apache/bin/apxs' 
'--with-curl=/opt/curlssl/' '--with-freetype-dir=/usr' 
'--with-gd' '--with-imap=/opt/php_with_imap_client/' '--with-imap-ssl=/usr' 
'--with-jpeg-dir=/usr' '--with-kerberos' '--with-libdir=lib64' 
'--with-libxml-dir=/opt/xml2' '--with-libxml-dir=/opt/xml2/' 
'--with-mcrypt=/opt/libmcrypt/' '--with-mysql=/usr' 
'--with-mysql-sock=/var/lib/mysql/mysql.sock' '--with-openssl=/usr' 
'--with-openssl-dir=/usr' '--with-pcre-regex=/opt/pcre' 
'--with-pic' '--with-png-dir=/usr' '--with-xpm-dir=/usr' 
'--with-zlib' '--with-zlib-dir=/usr' 

有一个区别

本地主机

Server API  Apache 2.4 Handler Apache Lounge 

专用服务器

Server API  CGI/FastCGI 

这会有所作为吗?

编码:

https://github.com/nilamdoc/vc.co.uk/blob/master/app/controllers/SessionsController.php#L33

在 L33 它应该重定向到仪表板页面

我也试过

header('Location: https://' . $_SERVER['SERVER_NAME']."/ex/dashboard");

但它没有重定向

4

1 回答 1

0

鉴于以下情况:

我也试过

header('Location: https://' . $_SERVER['SERVER_NAME']."/ex/dashboard");

但它没有重定向

...这不是锂问题。

你确定它甚至是阿帕奇?这个:

Server API  CGI/FastCGI

……好像没有说明。

于 2013-08-16T22:09:38.193 回答