gpt4 book ai didi

php - 在 Codeigniter 上删除 index.php 的问题没有加载我的 css 和 js

转载 作者:行者123 更新时间:2023-12-04 20:36:26 24 4
gpt4 key购买 nike

目前我试图删除 codeigniter url 上的 index.php。我在 localhost/jqm/withci 上安装了我的 codeigniter。然后我写 .htaccess 来删除 index.php,它运行良好。.htaccess 文件:

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

但是我遇到了一些问题,我的 css 文件和 js 无法加载..我的 Controller 是

class Home extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->helpers('url');
}

function index() {
$this->load->view('head_view');
$this->load->view('main_view');
$this->load->view('foot_view');
}
}

我对 head_view 的看法是:

<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=320; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<title>jQuery Mobile with Codeigniter</title>
<link rel="stylesheet" href="<?php echo base_url();?>jquery.mobile/jquery.mobile-1.0a4.1.css" type="text/css" charset="utf-8" />
<script type="text/javascript" src="<?php echo base_url();?>jquery.mobile/jquery-1.5.2.js"></script>
<script src="<?php echo base_url();?>jquery.mobile/jquery.mobile-1.0a4.1.js"></script>

<!-- CDN Respositories: For production, replace lines above with these uncommented minified versions -->
<!-- <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css" />-->
<!-- <script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>-->
<!-- <script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>-->

</head>
<body>

我尝试使用 base_url() 但它没有加载我的 css 和 js。
谢谢..
PS:我
正在为 jQuery Mobile 使用 css 和 js 文件。我们可以从 CDN 存储库加载它,但我想让它可以从我自己的目录加载,以防将来我想加载自定义 css 或 js

最佳答案

在你的 .htaccess 文件中,将包含 JavaScript 和 CSS 的文件夹添加到重写条件中,例如:

RewriteCond $1 !^(index\.php|images|jquery\.mobile|robots\.txt)

目前这些文件没有加载,而是指向您的 index.php 文件。

关于php - 在 Codeigniter 上删除 index.php 的问题没有加载我的 css 和 js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6306517/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com