ageofsys/demo/master/.htaccess - Htaccess File

ageofsys/demo/master/.htaccess

<IfModule mod_rewrite.c>

#   RewriteEngine 활성화 
    RewriteEngine On

#   기본 경로를 설정
    RewriteBase /demo

#   진행 순서
#   1. ^(.*)$                           모든 문자를 패턴으로 검사한다.
#   2. $1 !^(index.php|robots.txt)    1번에서 전달된 문자열이 index.php 또는 robots.txt 가 아니라면 참
#   3. %{REQUEST_FILENAME} !-f          요청이 파일이 아니라면 참
#   4. %{REQUEST_FILENAME} !-d          요청이 폴더가 아니라면 참
#   5. index.php/$1 [L]                 2,3,4 조건이 모두 참이라면 index.php/전달받은 문자열로 이동한다.

    RewriteCond $1 !^(index.php|robots.txt|test.php)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]

</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache