Re: Problem with my Search Engine Friendly URLs in PHP.
On Tue, 22 Apr 2008 21:01:13 +0200, Bruno Rafael Moreira de Barros
<brunormbarros@gmail.com> wrote:
> I have this framework I'm building in PHP, and it has Search Engine
> Friendly URLs, with site.com/controller/page/args... And on my View
> files, I have <?=$this->baseURL;?>
Don't rely on short_tags, and especially not on <?=$var;?> syntax..
> to print the base URL on the links
> (eg. <a href='<?=$this->baseURL;?>/controller/page/args'>Go somewhere</
> a>. But on the CSS / JS files, how will I do it? I wonder, because on
> the View files, I can do <?=$this->baseURL;?>/css/site.css, and it
> will work. But images on the CSS stylesheet don't have the same
> possibility, and they can't be static URLs for code portability, nor
> they can be relative URLs because they would just get added to the
> Search Engine Friendly URL.
Unless there's an extra path not in your example, if in baseURL there only
is a domain name, you can leave it out all together...
href="/css/site.css" will just get it relative from the root, which ismy
preferred method.
--
Rik Wasmus
|