最后我决定在下班后尝试,搜索和研究。
几个月前,我将我的网站迁移到了更新的版本,并且我在apache中的旧主机一切正常。
最近我迁移到VPS,我决定使用Nginx作为服务器,我正在处理细节。
我的问题是我正在尝试使用PHP脚本进行一些特定的重定向。
重定向在apache(本地和远程)中运行良好,但在nginx中没有。
奇怪的行为是,例如,当我尝试使用URL fakesite.tk/Section/index.php apache重定向到fakesite.tk/Section/但Nginx返回404错误,如果我尝试URL fakesite.tk /Section/index.php/神秘地工作(注意末尾的斜线)并重定向到fakesite.tk/Section//(注意双斜线)
我尝试在所有URL的末尾添加斜杠,但这种重定向在Nginx中同样不起作用。
如果重要,我的VPS在Ubuntu中运行(我的主机是iquals),我在Windows机器上进行测试。
我的Nginx网站配置文件:
server
{
server_name *.fakesite.tk;
return 301 $scheme://www.fakesite.tk$request_uri;
}
#Redirect non www to www site version
server
{
server_name fakesite.tk;
return 301 $scheme://www.fakesite.tk$request_uri;
}
server
{
listen 80;
listen [::]:80;
root /var/www/SiteFolder;
index index.php;
server_name www.fakesite.tk;
#Stabilishing error 404 and 403 error pages
error_page 404 /?error=404;
error_page 403 /?error=403;
#Friendly URLs
location /
{
location /
{
try_files $uri $uri/ =404;
rewrite ^/([^/]*)/$ /?sect=$1 last;
rewrite ^/([^/]*)/([^/]*)/$ /?sect=$1&lang=$2 last;
rewrite ^/([^/]*)/([^/]*)/([^/]*)/$ /?sect=$1&lang=$2&cont=$3 last;
rewrite ^/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /?sect=$1&lang=$2&cont=$3&subcont=$4 last;
}
#Adding expire header
location ~* \.(?:ico|css|js|gif|jpe?g|png|eot|svg|ttf|woff)$
{
expires 30d;
add_header Pragma public;
add_header Cache-Control "public";
}
#Enabling PHP
location ~ \.php$
{
# With php5-fpm:
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_index index.php;
include fastcgi_params;
}
#deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
location ~ /\.ht
{
deny all;
}
}
我的php重定向脚本:
<?php
ini_set('display_errors', true);//Si estamos en local se muestran con normalidad los errores.
error_reporting(E_ALL);
$url = "http://$_SERVER[SERVER_NAME]$_SERVER[REQUEST_URI]";
$newurl = $url;
$newurl = str_replace('_', '-', $url);//Reeplace all _ with -
$newurl = str_replace('index.php', '', $newurl);//Removing a index.php
$newurl = str_replace('.php', '', $newurl);//Removing all .php
$newurl = str_replace('/Intro', '', $newurl);//Removing all intro sections
$extens = preg_match('/\.(jpg|gif|png|jpeg|js|css|woff|html|eot|svg|ttf|xml|map|min|txt)/', $newurl);
if($extens !== 1 && $newurl[strlen($newurl) - 1] !== '/') //Trying to put a slash at the end
{
$newurl.='/';
}
if($url !== $newurl)
{
header("HTTP/1.1 301 Moved Permanently");
header("Location: $newurl");
}
?>
我想这可能是我甚至看不到的非常小的细节,所以我感谢你的帮助。非常感谢。
编辑:我验证var $ newurl有效地改变并进入if条件,但是header(....);
行没有执行,之后我放了一个exit();
命令并且它正在被执行,这意味着有效地header(...);
行未被执行。
编辑2:当我手动在URL中加下下划线并在其末尾斜线时,这会重定向非常好,但如果我没有在结尾处设置斜杠,即使在运行条件块时它也不起作用。
答案 0 :(得分:2)
好的伙计们。我终于解决了它,就像我说的是一个非常小的细节(小细节总是最难的)。
问题在于,在nginx的虚拟主机文件中为PHP配置了fcgi
。
在原始文件(下方)中,我说fcgi
尝试查找文件,如果没有触发404 error
,这是我的错误,因为它触发了他的自我错误而且没有允许我的网站管理它,因此不会执行重定向脚本。
#Enabling PHP
location ~ \.php$
{
# With php5-fpm:
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
解决问题。我只是对fcgi
说,发送代码错误就像一个参数,允许网站管理它,就像这样:
#Enabling PHP
location ~ \.php$
{
# With php5-fpm:
#try_files $uri =404; #Mistake here!!
try_files $uri /?error=404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
编辑:我更喜欢使用正确的nginx虚拟主机配置文件在URL的末尾添加尾部斜杠(以避免404错误),因为PHP无法正常工作。我只在server
块中添加了以下行:#Adding trailing slash at the end rewrite ^([^.]*[^/])$ $1/ permanent;
请注意,它仅在网址没有点'.'
时重定向。
我希望将来可以利用这种经验来解决相关问题。
然后见。