我需要帮助。 我在远程服务器上托管了一个使用codeigniter设计的网站,但是我无法访问这些页面.Jai因为找不到404页错误。
以下是config.php文件的内容
$ config ['base_url'] ='http://www.SitePhp';
$ config ['index_page'] ='';
以下是.htaccess文件的内容
Options -Indexes
RewriteEngine On
RewriteCond $1 !^(index\.php|assets/|robots\.txt)
RewriteRule ^ (. *)$ index.php/$ 1 [L]
谢谢。
答案 0 :(得分:0)
htaccess的
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
和共享主机打开mod_rewrite模块。
$config['base_url'] ='http://www.SitePhp.com/';
将是
http://www.SitePhp.com etc.