简体   繁体   中英

How to get the base Url in cakephp?

I'm using Html Helper css() method to link my stylesheets just like this: <?php echo $this->Html->css('reset.css');?> but what if my CakePHP app is accessed through a path other than http://site.domain.com , ie http://site.domain.com/my_app

What would be the best command to link my stylesheet?

The exact same command should work:

<?php 
echo $this->Html->css('reset.css');
?>

It automatically adds the path to the CSS folder if the given path 'reset.css' doesn't start with a slash.

By the way, if you do need to get the base url in Cake, you can use the Router class:

//with http://site.domain.com/my_app
echo Router::url('/')       //-> /my_app
echo Router::url('/', true) //-> http://site.domain.com/my_app

There are a few different ways to get the base path. I use

echo $this->webroot; //Note: auto appends trailing slash

用于baseurl

echo $this->html->url('/', true);

On a related note.

If you need the theme url you can do this:

$this->webroot.'theme/'.$this->theme

You must format: WWW_ROOT . DS . 'css/file.css';

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM