need help

Discussion in 'WordPress' started by jitesh shinde, Oct 2, 2012.

  1. #1
    I have created a wordpress blog omkarchemicals.com/blog.I have given peramlink as post name.but after save this setting wordpress atomaticaly log outand blog give me a error that redirect loop.my .htaccess is blank.
     
    Last edited: Oct 2, 2012
    jitesh shinde, Oct 2, 2012 IP
  2. Devtard

    Devtard Notable Member

    Messages:
    850
    Likes Received:
    133
    Best Answers:
    4
    Trophy Points:
    220
    #2
    Put this code to your .htaccess file:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress
    Code (markup):
     
    Devtard, Oct 5, 2012 IP