|
搭建境:
PHP >= 5.6
Mysql >= 5.6
后台地址:/admin
默认账号密码
账号:admin
密码:123456
nginx伪静态:
- rewrite ^/index.html$ /index.php;
- rewrite ^/about.html$ /about.php;
- rewrite ^/top.html$ /top.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;
复制代码
|
|