我已经在我的 windows xp 系统中安装了 winginx 服务器,我创建了一个 wordpress 站点,它工作得非常好,但主要问题是 wordpress 永久链接不起作用。
我浏览了有关此问题的各种网站。但我无法解决它。
请帮助我解决这个问题。
我已经在我的 windows xp 系统中安装了 winginx 服务器,我创建了一个 wordpress 站点,它工作得非常好,但主要问题是 wordpress 永久链接不起作用。
我浏览了有关此问题的各种网站。但我无法解决它。
请帮助我解决这个问题。
Winginx Workbench > 服务器配置 >
server {
listen 127.0.0.1:80;
server_name yoursitename.com www.yoursitename.com;
root home/yoursitename/public_html;
index index.php index.html;
log_not_found off;
access_log logs/yoursitename-access.log;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?q=$request_uri;
}
location ~ /\. { deny all; }
location = /favicon.ico { }
location = /robots.txt { }
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
include fastcgi_params;
}
}