简介
CRZ.im
是一个网址缩短服务的网站,所用的源码基于PHP
、SQLite
进行开发,总大小仅10K
左右,十分轻巧。
演示地址:https://crz.im/
截图
安装
搭建好Web
环境,可以使用宝塔面板,或者LNMP
一键包,只需要安装Nginx
、PHP
即可。
然后解析好域名,上传程序源码到网站根目录,源码下载:Github、本地下载。
接下来设置Nginx
伪静态,在网站配置文件中添加以下代码:
#root后面为网站根目录
location / {
try_files $uri $uri/ =404;
rewrite (\d+|\w+)$ /index.php?id=$1;
location ^~ /asset/ {
root /var/www/xx.com;
}
location ^~ /api/ {
root /var/www/xx.com;
}
location ^~ /inc/ {
return 403;
}
}
最后只需要修改config.php
的相关配置并把inc
目录权限设置为可读写即可。
's
最后修改:2018 年 05 月 01 日 12 : 51 PM
文章: 《CRZ.im:一个十分简洁的网址缩短服务,带源码安装教程》
联系方式:
文章链接:https://wxiou.cn/index.php/archives/367/
除特别注明外,文章均为Literature原创,转载时请注明本文出处及文章链接
联系方式:
文章链接:https://wxiou.cn/index.php/archives/367/
除特别注明外,文章均为Literature原创,转载时请注明本文出处及文章链接
Comment here is closed