使用 Apache htaccess 插入Header/Footer
當看到一卡車的檔案, 每個檔案都要進去裡面加個 include 或某些資料, 想到就很辛苦~
另一種做法就是用 Apache .htaccess 的功能, 就可以快速達到這點~
.htaccess 是對整個目錄以下的做動作, 所以下述參數會對此目錄的所有檔案都加上 header.php.
php_value auto_prepend_file / auto_append_file 設定
- php_value auto_prepend_file "header.php" # 在每個檔案的最上方(前方), 都把 header.php 的內容插入
- php_value auto_append_file "footer.php" # 在每個檔案的最下方(後方), 都把 footer.php 的內容插入
其它常用設定
- DirectoryIndex index.html index.htm index.php # 此目錄下如果沒輸入檔名, 預設搜尋順序
- AddType application/x-httpd-php .html .htm # 讓 .html .htm 都經過 php parser
- php_value default_charset utf-8 # 預設編碼吐 UTF-8
Comments
Post a Comment