I have the following code in my .htaccess:
Code: Select all
RewriteEngine On
RewriteBase /
RewriteRule ^food/([0-9]+)$ index.php?view=show_category&id=$1 [L]
RewriteRule ^vision$ index.php?view=vision [L]
Code: Select all
<link href='css/style.css' rel='stylesheet' type='text/css' />
I have tried adding the front slash to the beginning of my css, however that seems to not make the css work on any rewrite rules. If I do add the entire absolute path to my css as such:
Code: Select all
<link href=http:/localhost/css/style.css' rel='stylesheet' type='text/css' />
Anyone have any suggestions?? I would immensely appreciate it. Thanks!!