经过几个小时的搜索和阅读,这就是我解决问题的方法。
步骤1:创建。htaccess文件,并将此代码放在根文件夹中。
# BEGIN
<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
步骤2:已提及
here