我正在开发codeigniter 当我在xampp服务器上使用它时,它与这个Url相当不错 localhost.com/realestate/index.php?class/method/parameter
但是当我把相似的东西放在godaddy主持人身上时
相同的网址段显示了codeigniter 404错误
答案 0 :(得分:2)
为您的文件夹添加.htaccess
。 Here is some result Check it out all the links.
主机区分大小写,因此请注意控制器和型号名称的命名
答案 1 :(得分:1)
<input type="file">
DirectoryIndex index.php index.html
<IfModule mod_rewrite.c>
RewriteEngine On
# RewriteBase /yourfoler/
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>
代替此操作,您可以{h1acess} localhost.com/realestate/index.php?class/method/parameter
像这样运行