dsunj08246 2011-03-16 10:30
浏览 13
已采纳

htaccess协助php文件

I have many pages my problem stands that I need to open all my php files and add a line of code at the top of each php page.

<?php 
if(!defined('no_d_a')){die('What The ... how did you get here :) ');} /* no direct access */ 
// rest of existing code here //
?>

Question is can I instead do this on a .htaccess file because I am feeling abit lazy :)

TIA

  • 写回答

2条回答 默认 最新

  • douhuang5623 2011-03-16 10:47
    关注

    I think what your wanting is a way to prepend the files with htaccess? If so here ya go:

    Save this as 'prepend.php'

    <?php
      if(!defined('no_d_a')){} /* no direct access */ 
    ?> 
    

    in your .htaccess add:

    <FilesMatch "\.(php)$">
    php_value auto_prepend_file "/home/*******/public_html/prepend.php"
    </FilesMatch>
    

    it will prepend all .php files with 'prepend.php'

    You may want to have some conditional clauses.. but that should get you started..


    You can also append files with 'auto_append_file' instead of 'auto_prepend_file'

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥15 Python3.5 相关代码写作
  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里