在GoDaddy上托管Codeigniter网站,共享主机

时间:2014-11-16 08:35:51

标签: php .htaccess codeigniter web-hosting shared-hosting

目录结构(public_html

public html
htpasswds
application
    .htacess
cgi-bin
system
user_guide
index.php

配置文件如下所示:

$config['base_url'] = 'http://www.example.com/index.php/';
$config['index_page'] = 'index.php?';
$config['uri_protocol'] = 'AUTO';
$config['allow_get_array']      = TRUE;
$config['enable_query_strings'] = FALSE;

.htaccess档案

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]

route.php

$route['default_controller'] = 'welcome';

application->controllers下我有两个PHP文件,welcomeabout,其中包含方法。

以下是我正在生成的链接,

<li><a href='./welcome'>Home</a>
<li><a href='./welcome/first'>first</a></li>    
<li><a href='./welcome/second'>second</a></li>
<li><a href='./third'>Third</a></li>
<li><a href='./fourth>Four</a></li>
<li><a href='./five'>Five</a></li>
<li><a href='./six'>Six</a></li>

如果我手动输入http://www.example.com/index.php/welcome/second,我可以访问该页面。 但我不知道如何生成相同的链接,以及如何摆脱URL中的index.php

1 个答案:

答案 0 :(得分:3)

最好使用Anchor函数生成链接。请参阅文档here

htaccess应该删除url之前的index.php,你应该将此行更改为:

 $config['index_page'] = '';