Wordpress Permalinks - NGINX Conf (没有指定输入文件错误)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress Permalinks - NGINX Conf (没有指定输入文件错误)相关的知识,希望对你有一定的参考价值。
这是我目前在nginx服务器上对etcnginxconf.ddefault.conf文件的设置。我安装了一个Wordpress,我试图使用漂亮的permalinks结构,就像这样。http://XXX.XXX.XX.X/kiosks/%postname%/
目前得到一个 "没有输入文件指定。"错误。下面是我的default.conf。
#
# The default server
#
server {
listen 80;
server_name example.com;
root /usr/share/nginx/html;
# location / {
# root /usr/share/nginx/html;
# index index.php index.html index.htm;
# }
location /kiosks {
index index.php index.html index.htm;
try_files $uri $uri/index.php?$args;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ .php$ {
root /usr/share/nginx/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;
include fastcgi_params;
}
}
答案
解决方法
#
# The default server
#
server {
listen 80;
server_name example.com;
root /usr/share/nginx/html;
# location / {
# root /usr/share/nginx/html;
# index index.php index.html index.htm;
# }
location @wp {
rewrite ^/kiosks(.*) /kiosks/index.php?$1;
}
location /kiosks {
alias "/usr/share/nginx/html/kiosks/"; #where wp actually is
try_files $uri $uri/ @wp;
location ~ .php$ {
try_files $uri =404;
fastcgi_read_timeout 300s;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
}
}
# location /kiosks {
# try_files $uri $uri/index.php?$args;
# index index.php index.html index.htm;
# }
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ .php$ {
root /usr/share/nginx/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;
include fastcgi_params;
}
}
以上是关于Wordpress Permalinks - NGINX Conf (没有指定输入文件错误)的主要内容,如果未能解决你的问题,请参考以下文章
IsapiRewrite Lite + Wordpress - 固定链接