Just got a new site up and running using a premade script. http://www.videochuckle.com/ It automatically updates with videos and pictures. It has a mod rewrite but a lot of the urls are showing links like this : http://www.videochuckle.com/videos/526_Doctor%20Slide%20Tackle.html Code (markup): Is there an easy way to get it to display the url like this: http://www.videochuckle.com/videos/526_Doctor-Slide-Tackle.html Code (markup): OR Could someone do it for me for a small fee?Is it possible? I would really like it sorted before the site is crawled. TIA MK
You want something like this example below in your PHP code, to replace all spaces with dashes. You'll also need to do the opposite in the script that recieves the filename as a parameter: $url = str_replace(' ', '-', $url); PHP: Cryo.