如何将php_value allow_url_fopen添加到htaccess?

时间:2015-03-17 13:27:47

标签: php .htaccess

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

如何在上面的代码中添加以下行:

php_value allow_url_fopen On

我在阅读this问题之后来了。

1 个答案:

答案 0 :(得分:0)

安置无关紧要。 只有当您将IfModule放在mod_rewrite内时才会执行,如果php_value allow_url_fopen On # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress 不存在则执行。不是你想要的。

{{1}}