41

我正在研究文字出版社。我需要增加内存,所以将以下行添加到我的 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>

php_value memory_limit 64M

我的示例 php 页面

但它会引发 500 内部服务器错误。这里有什么问题..

4

1 回答 1

86

在您的.htaccess中,您可以添加:

PHP 5.x

<IfModule mod_php5.c>
    php_value memory_limit 64M
</IfModule>

PHP 7.x

<IfModule mod_php7.c>
    php_value memory_limit 64M
</IfModule>

如果页面再次中断,那么您在 apache 中使用 PHP 作为 mod_php,但错误是由于其他原因造成的。

如果页面没有中断,那么您正在使用 PHP 作为 CGI 模块,因此无法使用 php 值 - 在我提供的链接中可能是解决方案,但我不确定您是否能够应用它。

阅读更多关于http://support.tigertech.net/php-value

于 2012-08-29T07:27:41.870 回答