Adaptable to each terminal's lazy website navigation, good-looking templates and navigation source code environment: around php5.5 + mysql
First import the database file db/db.sql
Then modify the config.php database configuration and then set the pseudo-static rules on the server to access the website. OK
The background is: your domain name/admin/login.php account: admin password: qqqqqq
If you have any questions, please join the QQ group: 248078808 to communicate and get help.
Nginx pseudo-static rules
rewrite^/index.html$/index.php;
rewrite^/about.html$/about.php;
rewrite^/search.html$/search.php;
rewrite^/apply.html$/apply.php;
rewrite^/404.html$/404.php;
rewrite^/sort([1-9]+[0-9]*).html$/sort.php?id=$1;
rewrite^/sort([a-zA-Z]+).html$/sort.php?alias=$1;
rewrite^/site-([1-9]+[0-9]*).html$/site.php?id=$1;
Apache pseudo-static rules
RewriteEngineOn
rewritebase/
RewriteRule^index.html/index.php[L,NC]
RewriteRule^about.htmlabout.php[L,NC]
RewriteRule^search.htmlsearch.php[L,NC]
RewriteRule^apply.htmlapply.php[L,NC]
RewriteRule^404.html404.php[L,NC]
RewriteRule^sort([0-9]+).htmlsort.php?id=$1[L,NC]
RewriteRule^sort([a-zA-Z]+).htmlsort.php?alias=$1[L,NC]
RewriteRule^site-([0-9]+).htmlsite.php?id=$1[L,NC]