Khi bạn gặp phải lỗi như ở tiêu đề đã nói, bạn chỉ cần sửa lại file .htacess
Mã:
# 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>
# BEGIN Protect XML-RPC
<Files "xmlrpc.php">
Order Deny,Allow
Deny from all
</Files>
# END Protect XML-RPC
# END WordPress
<Files "xmlrpc.php">
Order Deny,Allow
Deny from all
</Files>
Thành
Mã:
<FilesMatch "xmlrpc\.php$">
Satisfy Any
Allow from all
</FilesMatch>
0 nhận xét:
Đăng nhận xét