Help With A Mod Rewrite

by 1 replies
1
I am trying to rewrite a url like this:

http://www.thesite.com/1

to this:

http://www.thesite.com/folder/1

The trailing number can be any number so the rewrite needs to pass the number into the new url string...

I've been beating my head on this one for about 2 days now with no luck!

Thanks for any help!

Rick
#programming #mod #rewrite
  • try this one:
    RewriteRule ^([^/]*)$ folder/$1 [L]

    Im not super great with rewrite rules.

Next Topics on Trending Feed