Ads

May 12, 2013

URL Rewriting Tip with .htaccess File


Some days back I had posted "Pretty URLs with .htaccess rewriting tips". In this post I had given one more pretty URL tip with .htaccess tip. I hope it's useful for you.

URL Rewriting Tip with .htaccess File


Book : The Definitive Guide to Apache mod_rewriteThe Definitive Guide to Apache mod_rewrite

Original URL:
Eg:http://twitter.com/followers.php?id=9lessons

Rewriting URL
Eg:http://twitter.com/9lessons/followers



.htaccess Code
RewriteEngine On

RewriteRule ^([a-zA-Z0-9_-]+)/\followers$ followers.php?id=$1

RewriteRule ^([a-zA-Z0-9_-]+)/\following$ following.php?id=$1

No comments:

Most Popular Posts