각 단말기의 적응형 게으른 웹사이트 탐색 소스코드는 PHP+MySQL로 개발된 웹사이트 탐색 소스코드이다.
이는 원본 3.8을 기반으로 일부 기능을 수정하고 추가한 것입니다.
새로 오시는 분들은 직접 사용하시고 본 카피는 폐기하시는 것을 추천드립니다.
2차 개발이 가능하신 분들은 직접 확인하시고 업그레이드 해주시기 바랍니다.
파고다 Nginx-Tengine2.2.3 PHP5.6 + MySQL5.6.44
디버깅 오류를 방지하려면 테스트 환경에서 실행되는 php, mysql을 사용하는 것이 좋습니다.
먼저 phpMyAdmin을 사용하여 데이터베이스 파일 db/db.sql을 가져옵니다.
가져오기에 실패하면 데이터베이스 내용을 직접 복사하고 sql 문을 실행하세요.
그런 다음 config.php를 수정하여 데이터베이스를 구성하십시오.
그런 다음 서버에 의사 정적 규칙을 설정합니다.
웹사이트 방문 확인
배경은 다음과 같습니다: 도메인 이름/admin/login.php 계정: 관리자 비밀번호: qqqqqq
Nginx 의사 정적 규칙
^/index.html$ /index.php를 다시 작성하세요.
^/about.html$ /about.php를 다시 작성하세요.
^/search.html$ /search.php를 다시 작성하세요.
^/ranking.html$ /ranking.php를 다시 작성하세요.
^/wz.html$ /wzall.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; 다시 작성
^/wz([1-9]+[0-9]*).html$ /wz.php?id=$1; 다시 작성
^/wzshow_([1-9]+[0-9]*).html$ /wzshow.php?id=$1; 다시 작성하세요.
Apache 의사 정적 규칙
RewriteEngineOn
재작성베이스/
RewriteRule ^index.html /index.php [L,NC]
RewriteRule ^about.html about.php [L,NC]
RewriteRule ^search.html 검색.php [L,NC]
RewriteRule ^순위.html 순위.php [L,NC]
RewriteRule ^wz.html wzall.php [L,NC]
RewriteRule ^apply.html 적용.php [L,NC]
RewriteRule ^404.html 404.php [L,NC]
RewriteRule ^sort([0-9]+).html sort.php?id=$1 [L,NC]
RewriteRule ^sort([a-zA-Z]+).html sort.php?alias=$1 [L,NC]
RewriteRule ^site_([0-9]+).html site.php?id=$1 [L,NC]
RewriteRule ^wz([0-9]+).html wz.php?id=$1 [L,NC]
RewriteRule ^wzshow_([0-9]+).html wzshow.php?id=$1 [L,NC]
IIS 의사 정적 규칙(압축 패키지의 간단한 지침을 참조하세요)