Nginx / Php aficionado&#39>
我在Nginx上运行了一个Yourls安装,我使用以下的.conf文件工作正常。重定向工作,数据库从apache安装复制,一切都很好。
但是在旧服务器上,我在子目录中运行了另一个简单的shortURL服务。它有很多以url.com/p/0aexvibr
的风格创建的短网址它们都在名为" p"的子目录中运行。并且所有链接看起来都是这样,它们是普通文件,只有顶行的URL。
我需要的是让Nginx重定向网址,例如url.com/p/0aexvibr,并忽略任何内容来修改由下面的Yourls重写规则重定向的网址。将它们带到/ p /中的php脚本然后打开并重定向用户链接文件中的URL(在这种情况下,0aexvibr包含URL http://google.com)有人可以帮助设置它吗?
当前的conf
server {
listen 80;
server_name url.com;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
root /var/www/html/url;
charset utf-8;
}
location / {
try_files $uri $uri/ /yourls-loader.php;
index index.php;
include /etc/nginx/conf.d/php-fpm;
}
include /etc/nginx/drop;
}
以下是show.php
的内容<?php
if($_GET['id']){
$id = addslashes($_GET['id']);
if(file_exists("urls/$id"))
{
$url = file_get_contents("urls/$id");
header("location:".$url);
} else {
echo "Error : invalid hash";
}
} else {
echo "Error : no hash";
}
?>
答案 0 :(得分:0)
在YOURLS重定向时,我不知道该conf文件是如何为您工作的。无论如何,这是我对你的问题的建议:
server {
listen 80;
server_name url.com;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
charset utf-8;
##the next two locations for the old service which calls the show.php
location ~ ^/p/(.+\.php)$ {
alias /var/www/html/url/$1;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
}
location /p {
alias /var/www/html/url/;
try_files $uri $uri/ /p/show.php;
}
##the next two locations for the yourls configuration, expecting it to be in the root directory
location ~ ^/(.+\.php)$ {
alias /var/www/html/url/$1;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
}
location / {
alias /var/www/html/url/;
index index.php;
try_files $uri $uri/ yourls-loader.php;
}
}