reguller expression question
Posted: Tue Feb 13, 2007 6:45 am
I want to throw
/abc_tickets.html to abc.php
/mnm_kk_tickets.html to mnm_kk.php
now one thing is common in this that every thing is ending with _tickets.html and will be throws to respective pages.
currently i am doing:
but this is not a good way and i want to improve this one.
Thank You,
/abc_tickets.html to abc.php
/mnm_kk_tickets.html to mnm_kk.php
now one thing is common in this that every thing is ending with _tickets.html and will be throws to respective pages.
currently i am doing:
Code: Select all
RewriteRule ^abc_tickets.html abc.php [nc]
RewriteRule ^mnm_kk_tickets.html mnm_kk.php [nc]Thank You,