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.

My wordpress site's custom permalink structure not working

Discussion in 'WordPress' started by roquib007, Jul 9, 2011.

  1. #1
    My wordoress custom permalink suddenly stopped working,i set it like "/%postname%/" (without quote) it only works in default permalink structure.Does any one have the solution? my site http://biggestoffer.com
     
    roquib007, Jul 9, 2011 IP
  2. rain21

    rain21 Active Member

    Messages:
    1,365
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    73
    #2
    do u use any plug-in like "all in one SEO" ? if use, disable its rewrite URL option
     
    rain21, Jul 9, 2011 IP
  3. тнє Sufi

    тнє Sufi Peon

    Messages:
    391
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Check out your .HTACCESS file. CHMOD it 755. Or just edit by yourself. You will get code while you setting custom permalink.
     
    тнє Sufi, Jul 10, 2011 IP
  4. Anna Lang

    Anna Lang Active Member

    Messages:
    36
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    93
    #4
    "/%postname%/" this usually gives problems use /%year%/%postname%/ or /%category%/%postname% it will work ! :)
     
    Anna Lang, Jul 10, 2011 IP
  5. debarshi18

    debarshi18 Active Member

    Messages:
    327
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    73
    #5
    Edit your .htaccess file with this and change the file permission to 0644. this may work

    # 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
     
    debarshi18, Jul 10, 2011 IP
  6. тнє Sufi

    тнє Sufi Peon

    Messages:
    391
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    No, /%postname%/ does not give any error.
     
    тнє Sufi, Jul 10, 2011 IP
  7. Yuuko008

    Yuuko008 Member

    Messages:
    682
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    33
    #7
    Try to delete your .htaccess. Then go to your wp-admin>Settings>Permalinks then click update. Then try if it's working.
     
    Yuuko008, Jul 10, 2011 IP
  8. roquib007

    roquib007 Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Thanks a lot everyone, it did really work. I have got my problem solved.
     
    roquib007, Jul 11, 2011 IP
  9. Ganesh Kompella

    Ganesh Kompella Active Member

    Messages:
    36
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    63
    #9
    .htaccess handles the PHP mod-rewrite URL's . Whenever you have any similar issues in future , just go to this file and edit it ..
    Cheerss
     
    Ganesh Kompella, Jul 15, 2011 IP
  10. bradjohnson

    bradjohnson Peon

    Messages:
    246
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Then i edited the .htaccess like this: (default but was missing)

    1.# BEGIN WordPress
    2.<IfModule mod_rewrite.c>
    3.RewriteEngine On
    4.RewriteBase /
    5.RewriteCond %{REQUEST_FILENAME} !-f
    6.RewriteCond %{REQUEST_FILENAME} !-d
    7.RewriteRule . /index.php [L]
    8.</IfModule>
    9.# END WordPress

    Now /%whatever% works
     
    bradjohnson, Jul 15, 2011 IP