0

我正在尝试安装 CodeIgniter(我有 Mac)。我没有使用框架的经验,但我读过一些关于 MVC 的内容。我的目标是设置 CodeIgnitor,以便我可以使用它。

所以我下载了 CodeIgniter,然后在一个教程中我被告知以下内容:将文件复制到服务器的 Web 根文件夹,通常是 /var/www/ !

在本教程中:http ://www.phpeveryday.com/articles/CodeIgniter-Introduction-to-CodeIgniter-Framework-P147.html

我被告知“打开您的根 Web 服务器”并将文件夹放入其中。

什么是“根网络服务器”?是我的 htdocs 吗?我应该把这个文件夹放在哪里?

我将文件夹放入我的 HTDOCS 文件夹,因为那是所有 PHP 文件所在的位置,但我不确定我是否做得对。

4

1 回答 1

0

请安装世界上最简单的东西XAMPP

找到文件夹xampp/htdocs(所需的 Web 根文件夹)并在其中创建文件夹(项目名称),在其中解压缩/unrar/un7z CI,这样您的文件夹结构将是

xampp/htdocs/project_name/application
                         /system
                         /index.php

打开project_name/application/config并浏览所有文件,逐一查看它们,这样您就知道 CI 可以做什么,不能做什么,每个文件中都很好地解释了每个设置的作用。

如果您是CI新手,请遵循此视频教程


如果您正在寻找好的.htaccess文件,请抓住这个文件并根据需要进行更改

注意:这个文件应该在 /project_name

注意2:也config/config.php设置index_page$config['index_page'] = '';

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /<your project name>

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    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>

更改后.htaccessconfig/config.php您的网址“不错” localhost/project_name/controller/method/parameter1/parameter2

最后:它是 CodeIgniter 而不是CodeIgnitor

于 2013-09-13T09:08:33.877 回答