Hello everyone, I need to give a page name using keywords. Given Page Name : viewCatOffer.php?catId=12 I Required : restaurants_offers.php Please suggest me the correct way how to solve this problem in PHP. Thanks in advance!!!!!
as told, use htaccess. this is a good resource: askapache.com/ htaccess/mod_rewrite-tips-and-tricks.html
Create a .htaccess file and wrote this: Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteRule ^restaurants_offers\.php$ viewCatOffer.php?catId=12 Code (markup):