1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

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