当看到一卡车的档桉, 每个档桉都要进去裡面加个 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
另外还有在php.ini中设置的方法://www.zuimoban.com/php/php/1548.html (责任编辑:最模板) |