2016-12-16 88 views
0

我試圖用一個自舉模板爲我笨項目,但我有麻煩集成自舉模板。我下面的教程,他把這個內容.htaccess文件:我不能笨

RewriteEngine on 
RewriteCond $1 !^(index\.php|images|css|fonts|js|robots\.txt) 
RewriteRule ^(.*)$ /index.php/$1 [L] 

但我有我的.htaccess文件與此內容:

<IfModule mod_rewrite.c> 
    RewriteEngine On 
    # !IMPORTANT! Set your RewriteBase here and don't forget trailing and  
    leading 
    # slashes. 
    # If your page resides at 
    # http://www.example.com/mypage/test1 
    # then use 
    # RewriteBase /mypage/test1/ 
    RewriteBase /ci_introo/ 

    RewriteCond %{REQUEST_URI} ^system.* 
    RewriteRule ^(.*)$ /index.php?/$1 [L] 

    RewriteCond %{REQUEST_URI} ^application.* 
    RewriteRule ^(.*)$ /index.php?/$1 [L] 

    #RewriteCond $1 !^(index\.php|public|\.txt) 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteRule ^(.*)$ index.php?/$1 [L] 
    </IfModule> 

    <IfModule !mod_rewrite.c> 
    # If we don't have mod_rewrite installed, all 404's 
    # can be sent to index.php, and everything works as normal. 
    # Submitted by: ElliotHaughin 

    ErrorDocument 404 /index.php 
    </IfModule> 

我該如何解決這個問題?

+0

你不能使用模板是指?你不能在codeigniter中引用css和js的引導程序。是嗎???? – kishor10d

+0

我不能使用背景圖片從引導了我的主頁@ kishor10d –

+0

我無法理解爲什麼你寫這麼大的'''.htaccess'''而你並不需要那麼多的代碼。 – kishor10d

回答

0

您需要自動加載的配置文件的URL幫手。

轉到application/config/autoload.php

找到這個$autoload['helper'] = array();

,並改變了這一點。

$autoload['helper'] = array('url');

+0

我已經完成了這項操作.. –

+0

那麼結果是什麼呢然後又是致命的嗎? – kishor10d

+0

是的還沒有工作 –

0

你不需要爲的.htaccess。 所有你想要做的就是在你的autoload.php

添加URL,並將其放置在您的head.php

application/views/head.php

<html> 
<head> 
<link rel="stylesheet" href="<?php echo base_url();?>assets/css/bootstrap.min.css" /> 
    //place all css u need 
    </head> 

控制器代碼:

$this->load->view('header', $data);