在codeigniter中设置基本URL

在codeigniter中设置基本URL,第1张

在codeigniter中设置基本URL

在Config.php中

$config['base_url'] = 'http://localhost/Appsite/website/';$config['index_page'] = '';# If online site# $config['base_url'] = 'http://stackoverflow.com/';

进入

.htaccess
(外部应用程序文件夹 -
index.php
在URL中删除

RewriteEngine onRewriteCond  !^(index.php|assets|image|resources|robots.txt)RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ index.php?/ [L,QSA]

访问URL

<a href="<?php echo base_url();?>contollerName/methodName"> click here</a>

访问图像

<img src="<?php echo base_url();?>images/images.PNG”>

访问CSS

<link rel="stylesheet" type="text/css" href="<?php echo base_url();?>assets/css/style.css"/>

base_url
从autoload.php 使用加载URL助手



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5441256.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存