Hi, My old website have html pages. I redesign my website with php I allready have html pages indexed in google. Now I want to redirect old and new files to an url without extension. old url :example.html new url: example.php target url : example/ I don't know how to do that. First I need to rewrite the url format from example.htm example.php to example/ and after that to make redirect? I need this for all website pages. Regards, Floryn
I would just ever so slightly tweak that bottom line to read; RewriteRule ^example.(html|php)$ /example/ Just purely to avoid any trouble. Andrew