我正在使用
<a href="<?php echo base_url('View/page'); ?>">LINK</a>
加载文件的方法和
<a href="<?php echo site_url('View/page'); ?>">LINK</a>
单击链接404页面时加载其他页面的方法在实时服务器上发现错误
我的.htaccess文件看起来像
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|
(.*)\.swf|forums|images|css|downloads|jquery|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]
网站网址的config.php
设置为:
$config['url_suffix'] = '';
$config['index_page'] = '';
任何人都可以帮忙解决这个问题...
答案 0 :(得分:0)