php_flag in .htaccess

看了 php_flag in .htaccess 這篇文章, 相當的實用.

htaccess 還有很多的功能, 簡單的來列一些.

ex:

DirectoryIndex index.html index.htm index.php
AddType application/x-httpd-php .html .htm
php_value auto_prepend_file /.../refer.php
php_value default_charset utf-8

上面四行意思為.

  1. 此頁面預設的頁面要抓哪個. 依序排列.
  2. 將 .html, .htm 也當 .php 一樣, 輸出前要經過處理.
  3. 在每個檔案前面都加上 refer.php
  4. 設定預設語系為 UTF-8

閱讀全文〈php_flag in .htaccess〉