我不会开发CodeIgniter应用程序,该应用程序可以在实时服务器上运行,但是在本地主机上无法正常工作
................
我更改配置
它可以工作,但是不能渲染页面
我希望你能帮助我。
我的.htaccess
DirectoryIndex index.php index.html
<IfModule mod_rewrite.c>
RewriteEngine On
# RewriteBase /sma/
RewriteCond $1 !^(index\.php|assets|install|update)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# For godady Shared Hosting Server uncomment the line below
# RewriteRule ^(.*)$ index.php?/$1 [L]
# Please comment this if you have uncommented the above
RewriteRule ^(.*)$ index.php?$1 [NC,L,QSA]
</IfModule>