经过网上的设置后,我这样访问:localhost/?home/index/index 是正确的,但我如果想设置成:
localhost/home/index/index 这种路径应该如何正确设置呢?哪里出问题了呢?
convention.php
'URL_MODEL' => 3,
'VAR_PATHINFO' => 'pathinfo',
.htacssess文件:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]
</IfModule>
最佳答案