Forums

Imported posts/categories won't direct to it's own page (7 posts)

  1. intopuddles
    Member
    Posted 3 years ago #

    I have imported my wordpress.com posts to a host that I'm currently using the wordpress software on. The problem is that whenever you click on a posts title from the main page, it won't redirect to the actual post. The same thing is true when you click on comments, or even categories.

    The site in question.

  2. Otto
    Tech Ninja
    Posted 3 years ago #

    Do you have an .htaccess file on your site? What's in it?

  3. intopuddles
    Member
    Posted 3 years ago #

    Yep, I had to create my own in public_html.

    This is all that's in it:

    php_value upload_max_filesize 20M
    php_value post_max_size 20M
    php_value max_execution_time 200
    php_value max_input_time 200

  4. intopuddles
    Member
    Posted 3 years ago #

    Should I add something to that file?

  5. thisisedie
    Member
    Posted 3 years ago #

    You had permalinks customized at the old site. Did you set them to the same configuration at the new one?

  6. Len
    Member
    Posted 3 years ago #

    Did you even update permalinks at all? I doubt it. You said you created your own htaccess file. If you're using "pretty permalinks" WordPress automatically creates it. It's contents look like...

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    More on using Using Permalinks.

  7. intopuddles
    Member
    Posted 3 years ago #

    Thanks for pointing me in the right direction. I thought I had updated the permalinks already, but it turns out that .htaccess wasn't writable.

Topic Closed

This topic has been closed to new replies.

About this Topic