Options +FollowSymLinks
RewriteEngine On # Turn on the rewriting engine
RewriteRule "^bar/(.*)$" "bar.php?sef_link=$1"
my htaccess rule is work but css, images and js files does not load.
when i look into source code, css file redirect :
localhost/css/style.css
but my css path is : localhost/night-rock/css/style.css
how can i fix this problem ?
i tried to add "/" before call css path :
<link href="/css/style.css" rel="stylesheet" type="text/css">
if i tried without "/" it search in:
http://localhost/night-rock/bar/css/style.css
<link href="css/style.css" rel="stylesheet" type="text/css"><link href="../css/style.css" rel="stylesheet" type="text/css">bar/from yourhtaccessor if this folder exists (/bar).. Then add../cssto yourHTML