将内容上传到wordpress时出现此错误。
访问被拒绝
您无权访问'http://example.com/xxx/wp-admin/post.php
下面是.htaccess。
cat /var/www/html/insurance-investment-knowledge/.htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /insurance-investment-knowledge/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /insurance-investment-knowledge/index.php [L]
</IfModule>
# END WordPress
我检查了mod的安全性,但未将其安装在系统上,因此我认为添加不会有任何作用
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
请提出如何解决此问题的建议。
谢谢。