如何在 xampp 中安装 codeigniter?

如何在 xampp 中安装 codeigniter?

我已经在 ubuntu 中安装了 xampp。需要将 CodeIgniter 复制到 xampp 中。

请告诉我相关程序。

答案1

在 ubuntu 上安装 xampp 后

  1. 从终端下载最新版本的 codeigniter

    wget https://github.com/bcit-ci/CodeIgniter/archive/3.0.4.zip

  2. 解压文件

    unzip ~/3.0.4.zip

  3. 转到主文件夹 codeigniter 文件作为 CI

  4. 将主目录中的 CI 复制到 xampp 的 htdocs

    sudo cp -a /home/system5/CI /opt/lampp/htdocs

  5. 类型

    http://localhost/CI/

并检查 codeigniter 页面是否显示

相关内容