我昨天开始使用VPS,我安装了WordPress并完成了基本设置。但永久销售的交易是什么?没有人希望使用默认的丑陋URL结构。我试图理解http://wiki.nginx.org/WordPress,但有趣的是"我不知道在哪里插入这些代码"。他们可能认为他们所有的读者都知道nginx,这并不好笑。
所以,我很确定.htaccess在nginx中不起作用。怎么办?在哪里放置哪些代码使自定义固定链接工作? P.S:你知道,如果我设置了一个自定义永久链接,那么输出就是404页面,如:
所以,我想要一个简单的指南,告诉你"编辑demo.php文件并在X"之后放在代码下面。
附加信息:我的webroot是/ usr / share / nginx / html,我在那里有两个WordPress。首先:/ usr / share / nginx / html目录 第二个:/ usr / share / nginx / html / video目录。我想要两个都很漂亮的网址。我chmod wp-content为775。
答案 0 :(得分:0)
Nginx根本不支持.htaccess。
你的nginx设置是否正确,以便php-fpm正在处理php文件?您的错误屏幕截图不清楚。
你必须编辑你的nginx配置文件并告诉它使用wordpress控制器来引导请求。
你的nginx.conf应该有一个http块,并且在那个服务器块内,并且在一些位置块内。您需要找到正确的服务器块并插入以下位置块
location / {
# Check if a file or directory index file exists, else route it to index.php.
try_files $uri $uri/ /index.php?$args;
}
这是一个完整工作的wordpress nginx.conf的完整示例我运行:
user www-data;
worker_processes 1;
pid /run/nginx.pid;
events {
worker_connections 1024;
multi_accept on;
use epoll;
}
http {
client_max_body_size 20M;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
sendfile on;
keepalive_timeout 30;
types_hash_max_size 2048;
server_tokens off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
server {
listen 80 default_server;
server_name www.site.com;
root /var/www;
index index.php;
location / {
# Check if a file or directory index file exists, else route it to index.php.
try_files $uri $uri/ /index.php?$args;
}
# pass the PHP scripts to FastCGI server
location ~ \.php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
}