Thinkpop 5.0 입구 파일 숨 기기

859 단어 Thinkphp5
초기 URL 스타일
http://localhost/tp5/public/index.php/index
1. index. php 와  .htacess 파일 을 Public 파일 과 같은 디 렉 터 리 로 이동 합 니 다.
2. index. php 수정
//       
define('APP_PATH', __DIR__ . '/application/');
define('LOG_PATH', __DIR__ . '/log/');
//         
require __DIR__ . '/thinkphp/start.php';

\think\Log::init([
    'type'  =>  'File',
    'path'  =>  LOG_PATH,
    'level' => ['error']
]);

3. htaccess 파일 수정

  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]


이것 은 우리 가 최종 적 으로 원 하 는 URL 스타일 입 니 다.
http://localhost/tp5/index

좋은 웹페이지 즐겨찾기