Post

php.ini and .htaccess

php.ini



Link
php.net/manual/en/ini.list.php


image


php.ini는 PHP의 설정 파일로, 이것을 변경하면 서버의 모든 PHP 스크립트에 설정 내용이 반영됨.


php.ini 환경설정 설명
puham.tistory.com/97






.htaccess



Link
httpd.apache.org/docs/2.4/howto/htaccess.html
httpd.apache.org/docs/2.4/en/howto/ssi.html


  • .htaccess(hypertext access)

    • 웹 서버 구성의 분산된 관리를 위해, 여러 웹 서버가 지원하는 디렉터리 수준의 설정 파일을 가리킴.

    • php_value [name] [value] : 지정된 변수에 원하는 값을 설정함.

    • php_flag [name] [on|off] : Boolean 값을 가지는 설정 옵션의 값을 설정함.

    • php_admin_value [name] [value] : 지정된 변수에 원하는 값을 설정함.

      • “Admin” 으로 지정된 설정은 main Apache 설정파일에서만 설정이 가능함.

      • .htaccess 파일에서 그 내용을 변경하는 것은 불가능함.

    • php_admin_flag [name] [on|off] : Boolean 값을 가지는 설정 옵션의 값을 설정함.


1
2
3
4
// example

php_flag engine off    # php parsing off
Addtype application/x-httpd-php .txt .jsp   # .txt, .jsp type equals .php






This post is licensed under CC BY 4.0 by the author.