Hi is there a way to change domain.com/:700/imagedir/imagefolder/image.jpg to remove :700 domain.com/imagedir/imagefolder/image.jpg On all pages under a directory Using, modrewrite or a sql update sting thanks
You can remove :700 from the path variable dynamically with the command: $newpath = ereg_replace(":700","",$path) Basically it takes :700 and replaces it with nothing.