安装PHP以及搭建博客伪静态

Posted 大仙儿没溜儿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装PHP以及搭建博客伪静态相关的知识,希望对你有一定的参考价值。

访问网站?p=4  动态链接,更改为 伪静态

http://blog.daxian.com/?p=4

 

实现wordpress的URL伪静态

设置 -----固定连接-------自定义结构-----输入代码

/archives/%post_id%.html

保存

修改nginx

cd /application/nginx/conf/extra/

vim blog.conf

location / {
root html/blog;
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?q=$uri&args;
}

/application/nginx/sbin/nginx -t

/application/nginx/sbin/nginx -s reload

 

 

访问网站文章

 

以上是关于安装PHP以及搭建博客伪静态的主要内容,如果未能解决你的问题,请参考以下文章

资源变现小程序源码及搭建教程

安装PHP以及搭建博客服务迁移分离

如何使用阿里云+Hexo搭建个人静态博客

LNMMP架构搭建wp个人博客实现动静态内容分离

静态博客搭建工具汇总

Caddy环境下WordPress博客伪静态设置