htaccess- 301 Redirect Old URLs With Spaces
Here’s a quick and easy htaccess 301 redirect tip. So, you have a URL like this: http://www.example.co.uk/this is_a_file.html and you want to redirect it to: http://www.example.co.uk/this_is_a_file.html All you need to is quote the URL like this: 1 Redirect 301 "/this is_a_file.html" http://www.example.co.uk/this_is_a_file.html
brightcherry.co.uk