각 터미널의 게으른 웹 사이트 탐색, 멋진 템플릿 및 탐색 소스 코드 환경에 적응 가능: 약 php5.5 + mysql
먼저 데이터베이스 파일 db/db.sql을 가져옵니다.
그런 다음 config.php 데이터베이스 구성을 수정한 다음 서버에 의사 정적 규칙을 설정하여 웹 사이트에 액세스합니다.
배경은 다음과 같습니다: 도메인 이름/admin/login.php 계정: 관리자 비밀번호: qqqqqq
궁금한 점이 있으시면 QQ 그룹: 248078808에 가입하여 소통하고 도움을 받으세요.
Nginx 의사 정적 규칙
다시 쓰기^/index.html$/index.php;
다시 작성^/about.html$/about.php;
다시 작성^/search.html$/search.php;
다시 작성^/apply.html$/apply.php;
다시 작성^/404.html$/404.php;
다시 쓰기^/sort([1-9]+[0-9]*).html$/sort.php?id=$1;
다시 쓰기^/sort([a-zA-Z]+).html$/sort.php?alias=$1;
다시 쓰기^/site-([1-9]+[0-9]*).html$/site.php?id=$1;
Apache 의사 정적 규칙
RewriteEngineOn
재작성베이스/
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]