fredy91 14 Newbie Poster

Hy all,

I am still newbie in web developing
here my problem,

I using .htacces to change the url of my website
the url have changed but the problem the css file is not loaded

here is my .htacces file

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l


# Files to ignore.
RewriteCond $1 !^(index\.php|images|uploader|css|js|robots\.txt|favicon\.ico)

RewriteRule ^index/(.*)$ index.php?page=$1&lang=$2 [QSA,L]

and here how i load the css

<head>
	<link href="images/navi_icon.png" rel="shorcut icon" />
	<meta http-equiv="content-type" content="text/html; charset=utf-8" />
	<title>Naviga Tech Asia</title>
	<link href="css/index.css" rel="stylesheet" type="text/css">
    <script type="text/javascript" src="js/jquery.js"></script>
    <script type="text/javascript" src="js/menu.js"></script>
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
</head>

can anyone gives me some advice to fix it.
thanks a lot

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.