1

私は Codeigniter で非常に新しいです...私はいくつかの基本的なアイデアを持っています..しかし十分ではありません.問題について話しましょう....

私は静的なウェブサイトを持っています..これはすぐに動的になります.今、この静的なウェブサイトにはcss forlderのcss、css3、javascriptフォルダのjavascript、imagesフォルダの画像が含まれています.今、私はこの静的なウェブサイトをcodeigniterに設定したいと思っています. index.php と他のページとフォルダー (css、javascript.images) を含むコード全体viewを codeigniter.for すべての種類の情報のために、私の index.php ページはそのようなものです...

<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="css/reset.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/slider.css">
<!--<link href='http://fonts.googleapis.com/css?family=Great+Vibes' 
rel='stylesheet' type='text/css'>-->
<script src="<?= base_url() ?>path/images/js/jquery-1.7.min.js"></script>
<script src="<?= base_url() ?>path/images/js/jquery.easing.1.3.js"></script>
<script src="<?= base_url() ?>path/images/js/tms-0.4.1.js"></script>
<script src="<?= base_url() ?>path/images/js/vpb_script.js"></script>
<script src="<?= base_url() ?>path/images/js/pop.js"></script>

<!--start popup window ref-->
<link href="css/colorbox.css" rel="stylesheet" type="text/css" media="all" />
<script src="<?= base_url() ?>path/js/jquery_002.js"></script>
<script>
    $(document).ready(function(){

        $(".image_show").colorbox({rel:'image_show', transition:"fade"});

    });
</script>
<!--end popup window ref-->

<script>
    $(document).ready(function(){                   
        $('.slider')._TMS({
            show:0,
            pauseOnHover:true,
            prevBu:false,
            nextBu:false,
            playBu:false,
            duration:700,
            preset:'fade',
            pagination:true,
            pagNums:false,
            slideshow:8000,
            numStatus:false,
            banners:false,
            waitBannerAnimation:false,
            progressBar:false
        })      
    });
</script>
<style type='text/css'>
/*This will work for chrome */
    #vpb_general_button{
        padding:5px 2px 4px 2px;
    }

/*This will work for firefox*/
@-moz-document url-prefix() {
    #vpb_general_button{
        padding:5px 2px 6px 2px;
    }
}
</style>
<!--[if lt IE 8]>
   <div style=' clear: both; text-align:center; position: relative;'>
     <a href="http://windows.microsoft.com/en-US/
internet-explorer/products/ie/home?ocid=ie6_countdown_bannercode">
       <img  src="http://storage.ie6countdown.com/assets/100/
images/banners/warning_bar_0000_us.jpg" border="0" 
height="42" width="820" alt="You are     using an outdated browser. For a faster, 
safer browsing experience, upgrade for free today." />
    </a>
  </div>
<![endif]-->
<!--[if lt IE 9]>
    <script type="text/javascript" src="js/html5.js"></script>
    <link rel="stylesheet" type="text/css" media="screen" href="css/ie.css">
<![endif]-->
</head>
<body>
<!--<div class="bg-top">-->
<div class="bgr">
<!--==============================Wrapper=================================-->
<div class="wrapper">
<?php 
   include_once('header.php');
   include_once('navigation.php');
   include_once('slider.php');
   include_once('offers.php');
   include_once('invite.php');
   include_once('testimonial.php');
   include_once('special_item.php');
   include_once('footer.php');
   include_once('popup.php');
   ?>

そして私のコントローラーはそのようなものです...

<?php
class Site extends CI_Controller
{
  function home()
 {
    $this->load->view('index');
 }


}

?>

問題は、私の Web ページが読み込まれているが、デザインがなく、javascript または css が見つからない可能性があることです。

私はここで間違いを犯していることを知っています..bur私はそれを修正することはできません,私がそれを修正するのを手伝ってください..

4

4 に答える 4

3

通常、そのようなすべてのファイルをアプリケーション ルートの「assets」フォルダーに配置し、Asset_Helper を使用してそれらのファイルを指すようにします。これはCodeIgniterが提案するものです

于 2013-06-10T04:44:21.873 に答える
1

フォルダー (css、javascript、images) はフォルダーに貼り付けるべきではありませんがviews、Code Igniter があるフォルダーに貼り付けてくださいindex.php。(通常、フォルダーの親フォルダーapplication、つまりサイトのパブリック ルート)。

于 2013-06-10T04:30:04.393 に答える
1

<?= base_url() ?>すべての css リンクに追加できます。

<link rel="stylesheet" type="text/css" media="screen" 
href="<?= base_url() ?>path/to/css/reset.css">
于 2013-06-10T05:27:54.097 に答える