我说实话 - 我是使用Nginx的新手,但看起来很简单。 我刚刚在我的服务器上安装了一个Mediawiki,应用了数据库等,它已经启动并运行了 http://wiki.rebirthgaming.org/index.php?title=Main_Page
但我想使用短网址。我使用了redwerks工具来构建我的nginx配置并将更改应用到LocalSettings.php。 nginx.conf设置有效 - 该网站现在正在运行这些设置。但是,当我将这些设置添加到LocalSettings.php时,我得到404
我添加了404的本地设置:
$wgArticlePath = "/$1";
$wgUsePathInfo = true;
$wgScriptExtension = ".php";
$wgGenerateThumbnailOnParse = false;
我的nginx.conf如下:
server {
listen 80;
server_name wiki.rebirthgaming.org;
root /var/www/wiki.rebirthgaming.org;
index index.php;
location / {
try_files $uri $uri/ wiki.rebirthgaming.org;
# Do this inside of a location so it can be negated
location ~ \.php$ {
try_files $uri $uri/ =404; # Don't let php execute non-existent php files
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
}
}
location /images {
# Separate location for images/ so .php execution won't apply
location ~ ^/images/thumb/(archive/)?[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ {
# Thumbnail handler for MediaWiki
# This location only matches on a thumbnail's url
# If the file does not exist we use @thumb to run the thumb.php script
try_files $uri $uri/ @thumb;
}
}
location /images/deleted {
# Deny access to deleted images folder
deny all;
}
# Deny access to folders MediaWiki has a .htaccess deny in
location /cache { deny all; }
location /languages { deny all; }
location /maintenance { deny all; }
location /serialized { deny all; }
# Just in case, hide .svn and .git too
location ~ /.(svn|git)(/|$) { deny all; }
# Hide any .htaccess files
location ~ /.ht { deny all; }
# Uncomment the following code if you wish to hide the installer/updater
## Deny access to the installer
#location /mw-config { deny all; }
# Handling for the article path
location wiki.rebirthgaming.org {
include /etc/nginx/fastcgi_params;
# article path should always be passed to index.php
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_pass 127.0.0.1:9000;
}
# Thumbnail 404 handler, only called by try_files when a thumbnail does not exist
location @thumb {
# Do a rewrite here so that thumb.php gets the correct arguments
rewrite ^/images/thumb/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ /thumb.php?f=$1&width=$2;
rewrite ^/images/thumb/archive/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ /thumb.php?f=$1&width=$2&archived=1;
# Run the thumb.php script
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/thumb.php;
fastcgi_pass 127.0.0.1:9000;
}
}
}
我希望我的网址如下所示: wiki.rebirthgaming.org/Main_Page
我一直试图弄清楚这一点,尝试不同的设置等,但在进行局部设置更改时总是会失败。
答案 0 :(得分:0)
我认为你的位置块内部实际上需要重写规则。作为参考,这里是我所拥有的缩写版本:
server {
location / {
try_files $uri $uri/ @mediawiki;
}
location @mediawiki {
rewrite ^/([^?]*)(?:\?(.*))? /index.php?title=$1&$2 last;
}
}