阿里云主机 CentOS 5.4 32位系统 阿里云官方环境
首先写wordpress伪静态规则
location / {
index index.html index.php;
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
网上找了很多都是这么写的
然后修改phpwind.conf文件调用伪静态文件
#伪静态规则
# include /alidata/server/nginx/conf/rewrite/wordpress.conf; 修改这里路径调用伪静态规则文件
log_format phpwind '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /alidata/log/nginx/access/phpwind.log phpwind;
wordpress后台设置固定链接 /%post_id%.html
最后打开网站404 郁闷啊 搞了一天了 求救高手大牛啊。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。