.htaccess 有很多的功能, 下列是常用的.
例如:
===============================================
DirectoryIndex index.html index.htm index.php
AddType application/x-httpd-php .html .htm
php_value auto_prepend_file ./before.php
php_value default_charset utf-8
php_flag register_globals on
===============================================
上面意思是.
1.預設網頁的指定,依序排列.
2.讓 .html, .htm 跟 .php 一樣, 輸出前要經過處理.
3.在每個檔案前面都加上 before.php
4.設定預設語系為 UTF-8
5.設定php.ini的參數register_globals為on