这就是解决方案
转到ftp或文件管理器查找。htaccess文件
Next: Change the code inside file (Look for RewriteBase line)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase / ("this line should be only a slash after RewriteBase - remove anything else")
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
这应该可以解决问题。-贾斯汀