Chỉ cần thử đặt một tệp .htaccess trên thư mục gốc của wordpress của bạn. Sau đó, thay đổi quyền của nó thành 755 và thay đổi cấu trúc liên kết cố định thành tên đăng.
Đây là mã tệp .htacess mẫu.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /mysite2.com/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /mysite2.com/index.php [L]
</IfModule>
# END WordPress