removed popups that shouldn't appear
This commit is contained in:
parent
3d73898328
commit
57125444ca
46
README.en.md
Normal file
46
README.en.md
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
# ShortLink
|
||||||
|
|
||||||
|
The code is based on secondary development of [CRZ.im](https://github.com/Caringor/CRZ.im), thanks for the hard work of the original author @Caringor!
|
||||||
|
|
||||||
|
## Language
|
||||||
|
- zh_CN [简体中文](README.md)
|
||||||
|
- en [English](README.en.md)
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
A web URL shortener source code.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
### Environment
|
||||||
|
|
||||||
|
+ Compatible with `PHP 7.x`
|
||||||
|
+ `Nginx 1.15+`
|
||||||
|
+ ~~`MySQL 5.5+`~~ (Not required for current version)
|
||||||
|
|
||||||
|
Suggestion: Please install it on a SSD server if the website will be heavily used.
|
||||||
|
|
||||||
|
### Configuration
|
||||||
|
|
||||||
|
Modify the settings in `config.php` and change the permissions of the folder `inc` to `755`.
|
||||||
|
|
||||||
|
### URL rewrite rules
|
||||||
|
|
||||||
|
#### For Apache
|
||||||
|
|
||||||
|
Just directly use the file `.htaccess`.
|
||||||
|
|
||||||
|
#### For Nginx
|
||||||
|
|
||||||
|
Add the content of `nginx-rewrite.conf` to the `Nginx` server block being used.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
+ URL shortener
|
||||||
|
+ Concise page
|
||||||
|
+ One-click copy
|
||||||
|
|
||||||
|
## Todo List
|
||||||
|
|
||||||
|
+ Add the support of `MySQL`
|
||||||
|
+ More...
|
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
代码基于 [CRZ.im](https://github.com/Caringor/CRZ.im) 二次开发,感谢原作者的辛勤劳动。
|
代码基于 [CRZ.im](https://github.com/Caringor/CRZ.im) 二次开发,感谢原作者的辛勤劳动。
|
||||||
|
|
||||||
|
## 文档语言
|
||||||
|
- zh_CN [简体中文](README.md)
|
||||||
|
- en [English](README.en.md)
|
||||||
|
|
||||||
## 概述
|
## 概述
|
||||||
|
|
||||||
这是一个网址缩短服务的网站的源代码。
|
这是一个网址缩短服务的网站的源代码。
|
||||||
@ -10,7 +14,7 @@
|
|||||||
|
|
||||||
### 环境准备
|
### 环境准备
|
||||||
|
|
||||||
+ `PHP 7.0+`
|
+ `PHP 7.0x`版本兼容
|
||||||
+ `Nginx 1.15+`
|
+ `Nginx 1.15+`
|
||||||
+ ~~`MySQL 5.5+`~~ (目前还不需要)
|
+ ~~`MySQL 5.5+`~~ (目前还不需要)
|
||||||
|
|
||||||
@ -28,7 +32,7 @@
|
|||||||
|
|
||||||
#### Nginx 用户
|
#### Nginx 用户
|
||||||
|
|
||||||
需要把 `nginx-rewrite.conf` 里面的内容添加到 `Nginx` 的配置文件里。
|
需要把 `nginx-rewrite.conf` 里面的内容添加到 `Nginx` 对欲使用网站的配置文件里。
|
||||||
|
|
||||||
## 功能
|
## 功能
|
||||||
|
|
||||||
|
BIN
inc/class/database.db
Normal file → Executable file
BIN
inc/class/database.db
Normal file → Executable file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user