12

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, i.e. http://site.domain.com/my_app

What would be the best command to link my stylesheet?

tereško
  • 58,060
  • 25
  • 98
  • 150
Rodrigo Souza
  • 7,162
  • 12
  • 41
  • 72

5 Answers5

39

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
nIcO
  • 5,001
  • 24
  • 36
6

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

echo $this->webroot; //Note: auto appends trailing slash
Tim Joyce
  • 4,487
  • 5
  • 34
  • 50
6

Use this for baseurl

echo $this->html->url('/', true);
Carl0s1z
  • 4,683
  • 7
  • 32
  • 47
Vaibhav Shahu
  • 372
  • 4
  • 15
4

On a related note.

If you need the theme url you can do this:

$this->webroot.'theme/'.$this->theme
Dieter Gribnitz
  • 5,062
  • 2
  • 41
  • 38
-1

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

user2214236
  • 173
  • 1
  • 3