How could I rewrite the folder name? for instant, http://foo.com/adminfolder
Thanks
| SitePoint Sponsor |

How could I rewrite the folder name? for instant, http://foo.com/adminfolder
Thanks

MTV,
To what?
That's really a very basic question so I would recommend some reading about mod_rewrite and regex. I've got an article in my signature that may help (from experience in this forum).
Regards,
DK
David K. Lynn - Data Koncepts is a long-time WebHostingBuzz (US/UK)
Client and (unpaid) WHB Ambassador
Updated mod_rewrite Tutorial Article (setup, config, test & write
mod_rewrite regex w/sample code) and Code Generator

http://foo.com/adminfolder -> http://foo.com/folderOriginally Posted by dklynn
I just want to rename the folder name
Thanks DK

MTV,
Oh, okay.will do PRECISELY that and NO more.Code:RewriteRule ^/?admin([a-z]+)$ /$1 [R=301,L]
Okay, that's my "Specificity" soapbox. If you want to redirect links into the adminfolder to folder,Regards,Code:RewriteRule ^/?admin([a-z]+)(/[a-z./]+)?$ /$1$2 [R=301,L]
DK
David K. Lynn - Data Koncepts is a long-time WebHostingBuzz (US/UK)
Client and (unpaid) WHB Ambassador
Updated mod_rewrite Tutorial Article (setup, config, test & write
mod_rewrite regex w/sample code) and Code Generator
Bookmarks