Front-end features:
1. Sites under all categories
2. Sites under a single category
3. Each site introduction page
4. Category scrolling positioning
5. Record the number of visits to each site
6. Like function (a single IP can only like once for a single site)
7. The site introduction page displays site thumbnails
8. Cool jump page of the site
9. Floating button in the lower right corner (go to the top/qq/email/WeChat QR code)
10. Search function (supports search for site name/site link/site introduction)
11. Visitors apply for site inclusion function
12. About us page
13. Lazy loading of site images
14. Category/site link alias
Backend features:
1.Support modification of all website information
2. Support modifying administrator information
3. Support uploading pictures such as website logo/favicon icon/WeChat QR code
4.Support adding/modifying/deleting navigation
5. Support adding/modifying/deleting categories
6.Support adding/modifying/deleting sites
7. Support review/delete site application
8.Support publishing/modifying/deleting statements
9. Adopt pen-light-year back-end UI design
Things to note:
1. This system uses pseudo-static. If your host does not support pseudo-static, please do not use it.
2. If it is Apache server-side software, you only need to enable the pseudo-static function, and the system has already configured it for you. For details, see .htaccess in the source code program.
3. If it is Nginx server-side software, you only need to configure pseudo-static according to the following 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;rewrite ^/([a-zA-Z]+).html$ /site.php?alias=$1;