安装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以及搭建博客伪静态的主要内容,如果未能解决你的问题,请参考以下文章