<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>但只能是根目录(http://127.0.0.1/)可用,加个目录m就不行了,希望管理员指教下。我本来准备用别名方式解决,但结果还是不行
'__alias__' => [
'm' => 'm/index.php/index/index/index',
], 最佳答案