I have Drupal 6 Site.
Here are my Urls:-
- www.mysite.com/albums
- www.mysite.com/albums/hindi
In my page.tpl.php, in the header
<link rel="stylesheet" type="text/css" href="<?php echo path_to_theme(); ?>/css/bootstrap/css/bootstrap.min.css" />
Now if I enter the url www.mysite.com/albums, stylesheet is picked and rendered with no issue.
But in case I enter the url as www.mysite.com/albums/(/ at the end) or any inner pages say www.mysite.com/albums/hindi, stylesheet is missing
If I inspect the page and manually put a / in the stylesheet path, it is again rendered.
Its not just the issue with stylesheet but with scripts + images as well.
I do get sometimes warning message in chrome as
Resource interpreted as Stylesheet but transferred with MIME type text/html
What should I do to fix it?
I am using Drupal v6.0