dear all,
I would like to ask about url rewriting in php. One of my project I got a problem
with image path.
.htacess
I am using header.html as a common file. But the images from header.html only display in index.php. In product.htm none of image can't display. I think I have a problem in .htacess file. Please let me know about this.
I would like to ask about url rewriting in php. One of my project I got a problem
with image path.
.htacess
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^home/?$ index.php
RewriteRule ^product/([0-9]+)/?$ product.php?prd _id=$1 [NC,L]
RewriteEngine on
RewriteRule ^home/?$ index.php
RewriteRule ^product/([0-9]+)/?$ product.php?prd _id=$1 [NC,L]
Comment