我的Wordpress版本4.8.2中出现图像问题。
wp-content文件夹.htaccess
中有public_html/wp-content/.htaccess
个文件。当我重命名或删除此文件图像工作正常但网站崩溃
的.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 upload_max_filesize 128M
php_value post_max_size 128M
php_value max_execution_time 300
php_value max_input_time 300
php_value memory_limit 256M
答案 0 :(得分:1)
您必须将此.htaccess文件放在根文件夹(public_html / .htaccess)中。不要将该文件上传到wp-content文件夹中。我希望它有意义。
答案 1 :(得分:0)
.htaccess将在root上而不是在wp-content文件夹中。它应该在public_html
中