如何在.htaccess中启用allow_url_include和allow_url_fopen

时间:2013-06-29 00:39:14

标签: php mysql

.htacess

# Do not remove this line, otherwise mod_rewrite rules will stop working
RewriteBase /
allow_url_fopen On 
allow_url_include On

我尝试将此添加到我的.htaccess但没有用过我试过这个

   $contnt = file_get_contents('http://site/files.php');
   echo $contnt;

但是我得到了这个错误

    Fatal error: Call to undefined function dijkstra() in /home/a2515416/public_html/algorithm.php on line 34

当我使用xampp时,一切都运行得很好。

1 个答案:

答案 0 :(得分:-1)

考虑到您的代码正在使用本地主机并且主机中存在未定义的函数错误,您的主机使用的是旧版本的PHP。

file_get_contents()仅在php 4.3中引入。

确保您的服务器加载了最新版本的php或php版本> = 4.3。