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.
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
RewriteRule ^([a-zA-Z0-9_-]+)/\followers$ followers.php?id=$1
RewriteRule ^([a-zA-Z0-9_-]+)/\following$ following.php?id=$1
No comments:
Post a Comment