Results 1 to 3 of 3

Thread: 301 redirects problem

  1. #1
    Join Date
    Jun 2006
    Location
    Carmona, Seville, Spain.
    Posts
    66
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default 301 redirects problem

    Hi, there.

    Many years ago when I was even greener and knew nothing about URL addresses, I wrote some file names for my website with spaces!

    As they got linked and the search engines accepted and ranked them, I left those few pages with the space in the file name hoping all would be OK.

    Now I'm paying the price of my foolishness. My hosting service Yahoo is changing all its Yahoo Services users to their updated Yahoo Small Business whether you want it or not. They also state that files with spaces in file names will no longer be valid or editable. So I have to update the files erasing the spaces.

    As these have a good ranking in Google, I'm trying to add 301 re-direction links, but unsuccessfully, using this code I got from the Internet.

    RewriteEngine On
    Redirect 301 /oldname.htm http://www.somesitename.com/newname.htm

    This goes into a file named .htaccess

    I understand I write this .htaccess file as:
    Redirect 301 /aaaa aaaa.htm http://www.mysitename.com/aaaa-aaaa.htm

    But the whole site fails ie. there is an error message for every page! (due to the space?)

    So I wrote it with the HTML code for the space in the old file:

    Redirect 301 /aaaa%20aaaa.htm http://www.mysitename.com/aaaa-aaaa.htm

    The site doesn't fail but the page will not redirect and gets a 401 error message.

    Getting frustrated here! Is my coding right or is it that file names with spaces can't be redirected with 301? PLEASE HELP!!
    Last edited by green; 10-28-2007 at 12:03 PM.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Try quoting:

    Code:
    Redirect 301 "/aaaa aaaa.htm" http://www.mysitename.com/aaaa-aaaa.htm
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Jun 2006
    Location
    Carmona, Seville, Spain.
    Posts
    66
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Thumbs up

    Magnificent! Works fine! Thank you, Scheuer

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •