在Config.php中
$config['base_url'] = 'http://localhost/Appsite/website/';$config['index_page'] = '';# If online site# $config['base_url'] = 'http://stackoverflow.com/';
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助手
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)