Dynamic link to URL rewritting...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • imarkdesigns
    New Member
    • Jul 2007
    • 46

    Dynamic link to URL rewritting...

    Hi to all masters...

    hope someone can help here out to share good or better idea on how to change a dynamic link to plain file link in CMS...

    here is my sample page for About us instead of ?id=2.


    http://domain.com/index.php?id=2 and we will change it to http://domain.com/aboutus.php

    thanks in advance...
  • hsriat
    Recognized Expert Top Contributor
    • Jan 2008
    • 1653

    #2
    [code=apache]RewriteEngine on
    RewriteRule aboutus.php index.php?id=2[/code]

    Copy this code to a file and save it as .htaccess (including the dot), in the folder containing index.php

    Comment

    Working...