我正在研究文字出版社。我需要增加内存,所以将以下行添加到我的 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 内部服务器错误。这里有什么问题..