vps lnmp安装包 nginx设置emlog伪静态
作者:xlnxin发布时间:2021-04-15分类:Emlog教程浏览:600
导读:在vps上使用lnmp搭建php环境安装emlog博客系统,安装后在设置伪静态时发现nginx对htaccess不支持。后来发现要在/usr/local/nginx/co...
在vps上使用lnmp搭建php环境安装emlog博客系统,安装后在设置伪静态时发现nginx对htaccess不支持。后来发现要在/usr/local/nginx/conf/nginx.conf手动添加相关伪静态规则进行配置,emlog官方也给出了emlog在nginx下的伪静态规则,添加后,emlog伪静态后的url可以正常访问了!
lnmp设置emlog伪静态:
通过SSH登陆putty后,输入命令vi /usr/local/nginx/conf/nginx.conf 回车,添加emlog官方给出的伪静态规则后内容如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | [root@hapicture ~]# vi /usr/local/nginx/conf/nginx.conf { listen 80; server_name hapicture.com; index index.html index.htm index.php; include location.conf; root /home/www; location / { index index.php index.html; if (!-e $request_filename) { rewrite ^/(.+)$ /index.php last; } } } include servers/*; } |
其中以下部分是emlog官方给出的location规则
1 2 3 4 5 6 7 8 | location / { index index.php index.html; if (!-e $request_filename) { rewrite ^/(.+)$ /index.php last; } } |
添加后,按Esc退出编辑状态,然后输入:wq保存退出。
最后输入/etc/init.d/nginx restart重启nginx使配置生效。
- Emlog教程排行
- 最近发表
-
- 小程序img_sec_check图片检测出行"errcode":47001错误解决方法
- win10看图软件不见了解决方法
- 双击excel打开不显示任何内容,只能在excel里面打开文件解决方法
- 小程序saveVideoToPhotosAlbum安卓手机可以下载MP4苹果手机不能下载解决方法
- 小程序逆向错误之 typeof3 is not a function
- 几种常用接口调用方式
- 小程序e.target.dataset和e.currentTarget.dataset区别
- excel vba实现模板批量打印
- lanxum打印机手动打印双面教程图解
- https(ssl)设置301跳转将http跳转到https