说明
CRZ.im
是一个网址缩短服务的网站,所用的源码基于PHP
、SQLite
进行开发,总大小仅10K
左右,十分轻巧。
演示图
食用方法
上传程序源码到网站根目录,
如果你的web服务是Nginx
需要设置伪静态
接下来设置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
目录权限设置为可读写即可。
© 版权声明
THE END
- 最新
- 最热
只看作者