url rewrite for dynamic category page using htaccess
http://shikshaadhar.com/category.php?category=institutes
to
http://shikshaadhar.com/colleges.html
Sample code below:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^([^/]*)\.html$ /category.php?category=$1 [L]
</IfModule>
to
http://shikshaadhar.com/colleges.html
Sample code below:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^([^/]*)\.html$ /category.php?category=$1 [L]
</IfModule>
Comments
Post a Comment