
This is a blind box mall source code that supports multiple platforms, including UNIPP, H5 and Mini programs. You can deploy this source code in a test environment that requires Nginx 1.20.2, PHP 7.2 (Redis, Fileinfo, and ImageMagick plug-ins are required), and MySQL 5.7.
The method of use is as follows:
Upload the source code to the server and import it into the database.
The permission to modify a specific directory is 777. These catalogs include:
/public
/runtime
Database configuration modification:
Make modifications in the.env file and the config/database.php file in the root directory.
Run directory settings:
Place the compiled files in the background into the/admin directory.
Put the front-end compiled files in the/public directory.
Set pseudo-static rules (TP):
Add the following rules to the Nginx configuration:
nginx
Copy code
location ~* (runtime|application)/{
return 403;
}
location / {
if (!- e $request_filename){
rewrite ^(.*)$ /index.php? s=$1 last;
break;
}
}
Global replacement domain name:
Globally replace the following domain names and replace them with your own domain name:
h5.xxxxxx.com
sitocheck.com
mh.deveapp.cn
Comments0