ワードプレスでやっています。メモリを増やす必要があるため、次の行を 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 内部サーバー エラーがスローされます。ここで何が問題なの..