1

ini 参数 allow_url_fopen=0 到 allow_url_fopen=1 但何时 cpanel 将自定义 php.ini 创建和 .htacsess 设置为

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond $1 !^(index\.php|images|sitemap.xml|php.ini|robots\.txt|css)
RewriteRule ^(.*)$ ./index.php/$1 [L]

</IfModule>
<IfModule mod_suphp.c>

suPHP_ConfigPath /home/myuser/public_html/

</IfModule>

和 php.ini 到

allow_url_fopen=1

但是pagee没有加载或错误500?

4

1 回答 1

0

这是您应该使用的正确 php.ini 值...

allow_url_fopen = 打开

希望能帮助到你

于 2013-11-10T10:33:28.160 回答