My code is working on production but its not working in localhost. i think its because of url redirect done in htaccess file.
when i open localhost/project_1.0/index.php page opens but images are not displaying. In source code on clicking its trying to load from localhost/images/e1.jpg but it should be localhost/project_1.0/images/e1.jpg
This same applies for css and javascript file also.
my htaccess file code:
RewriteEngine on
RewriteBase /
#Force non-www:
RewriteCond %{HTTP_HOST} www.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteRule ^index\.php$ / [NC,R=301,L]