I have an htaccess file and it has the following code. I am running my project on local system. Whenever I Open http://localhost/jobseeker/ it opens it but the css and js files are not implemented. When i checked their paths, it shows, http://localhost/assets/css/font-awesome.min.css instead of http://localhost/jobseeker/assets/css/font-awesome.min.css. Plz let me know how i can solve this.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [QSA,L]
</IfModule>
# BAN USER BY IP
<Limit GET POST>
order allow,deny
allow from all
deny from 123.63.30.165
</Limit>
/fromRewriteRule . /index.php