我想使用 .htaccess 将 allow_url_fopen 添加到我的服务器,因为我无法直接添加它。所以我想使用 .htaccess 添加.htaccss
它所以我将它添加php_value allow_url_fopen On
到我现有的 .htaccess 中,现在完成它的代码
RewriteEngine on
RewriteCond $1 !^(index\.php|system|css|functions)
RewriteRule ^(.*)$ index.php?/$1 [L]
php_value allow_url_fopen On
但现在我运行我的网站,它给了我Internal Server Error
任何人都可以告诉我我做错了什么。