Not signed in (Sign In)

Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.


    • CommentAuthorviane
    • CommentTimeNov 5th 2006
     
    Hello

    I am using php for developing my website. Right Now i am using query string for passing categories to display subcategories like

    www.abc.com?id=5 , can anyone help me to do mod rewrite of it?
    • CommentAuthorgilray
    • CommentTimeNov 6th 2006
     
    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule ^/([0-9]+)\.html$ /index\.php?c=$1 [L]

    Let me know if you have more problem.

    thanks