Installation instructions
1. Background installation
Download the source code to the server directory
Decompress the source code
Set the runtime directory to public (important)
Configure pseudo-static (see below for details)
Changing the Database Account and Password (config/database.php)
Just access the domain name
The installation is complete
Get started
Background: Login Account: admin Password: 123456 Login Background: http:// Domain Name/admin/
Pseudo-static rules
Apache environment
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
Nginx environment
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
2. Front-end use
You can change the domain name of the two JS in the util directory to your own backend domain name