Anybody know how to get rid of the /index.php/ between my domain and subpages in wp?

Discussion in 'Programming' started by buckknife1, Sep 25, 2008.

  1. #1
    I just changed my site into a wp blog and for some reason all of my posts have the following format: www[dot]doggroomingworld[dot]com/index.php/xxx.html. Unfortunately all of my google traffic went to the pages when they were doggroomingworld[dot]com/xxx.html. How can I get rid of that stupid index.php part?
     
    buckknife1, Sep 25, 2008 IP
  2. javaongsan

    javaongsan Well-Known Member

    Messages:
    1,054
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    128
    #2
    you need to edit your .htaccess file if you are on linux.
     
    javaongsan, Sep 25, 2008 IP
  3. young coder

    young coder Peon

    Messages:
    302
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #3
    add this to your .htaccess file
    
    RewriteCond %{HTTP_HOST} ^www.doggroomingworld.com$
    RewriteCond %{REQUEST_URI} index.php/
    RewriteRule (.*) http://www.doggroomingworld.com/$1 [L,R=301]
    RewriteCond %{HTTP_HOST} ^doggroomingworld.com$
    RewriteCond %{REQUEST_URI} index.php/
    RewriteRule (.*) http://doggroomingworld.com/$1 [L,R=301]
    
    Code (markup):
    should work fine :)
     
    young coder, Sep 25, 2008 IP
  4. buckknife1

    buckknife1 Peon

    Messages:
    335
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I tried that but then my entire site stopped working. I decided to just leave it alone. Search engines will eventually reindex my pages properly.
     
    buckknife1, Sep 26, 2008 IP
  5. einsteinsboi

    einsteinsboi Well-Known Member

    Messages:
    1,122
    Likes Received:
    76
    Best Answers:
    0
    Trophy Points:
    140
    #5
    You could also go into your admin area in WP, go into Settings -> Permalinks, and select custom structure, and then just put in /%postname%/ in the box.
     
    einsteinsboi, Sep 26, 2008 IP
  6. windrider

    windrider Peon

    Messages:
    24
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Go to options in WordPress. There will be a Site URL and actual location of WordPress. Change these as required.
     
    windrider, Sep 27, 2008 IP