Viewing 4 replies - 1 through 4 (of 4 total)
  • If you want to keep the same permalink format (with .html at the end) you should be able to edit the permalink structure under Settings and add “.html” (without the quotes) right after the post name.

    Or do you just want a redirect?

    Thread Starter shadowgerm

    (@shadowgerm)

    I just want a correct redirect in terms of in Blogspot

    I want it to point to http://www.chinatowneats.net/2010/02/new-wonton-garden/

    You could redirect it through your .htaccess file (how the URLs are rewritten in WordPress). The downside is if you edit it and then change a setting regarding permalinks the change will be overridden.

    I can’t guarantee this will work but it does work for me on the test I did.

    in your .htaccess file:

    Right above

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]

    add

    RewriteRule ([0-9]{4})/([0-9]{1,2})/(.*).html $1/$2/$3 [R=301,L]

    This tells your system to redirect urls with a year/day/title.html format to the same url without .html this is done using a “301” redirect which search engines will read and know that the page has permanently moved to the new url.

    Thread Starter shadowgerm

    (@shadowgerm)

    wow you are amazing, works like a charm!
    I wish theres a rep system here

    thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Migrated from Blogspot to WordPress’ is closed to new replies.