htaccess Rewriterule to make one query part of another
- by Dan T
I have a url /embed?t=X and I want to redirect it to /page/embed/X where X is any number of alpha numeric characters.
I know must redirect rules go the other way but for the purpose of the applciation I need to reverse it.
Any ideas?
I have tried things like:
RedirectRule ^embed\?t\=([a-zA-Z0-9]+)$ /page/embed/$1
but with no luck.