站內搜尋

Friday, October 24, 2014

[PHP][好文] 使用 Apache htaccess 快速於網頁 Header/Footer 插入特定程式

使用 Apache htaccess 快速於網頁 Header/Footer 插入特定程式

補充:
如果要讓整個網站都適用,就在網站的最上層目錄增加一支 .htaccess ,以插入footer為例,.htaccess 內容如下:

php_value auto_append_file "E:\AppServ\myweb\footer.php"

為了讓網站下所有階層的檔案都可以正確指到 footer.php 的位置,所以這裡建議使用絕對位置,絕對位置可以利用 echo __FILE__; 來查。

如果要排除某個檔案,就在加上

<Files test.php>
php_value auto_append_file none
</Files>

No comments:

Post a Comment