• changing from shared host to VPS ( linux centos32 , kloxo panel running)
    but upon creating a new wp install it messes up the permalinks so the url becomes like site.com/index.php/article-name not site.com/article-name
    Obviously changing that from settings-permalinks does nothing and it brakes the pages and just displays 404.
    I have spent several hours today trying to figure this out and already researched,but nothing..there are few fixes for this problem for windows servers but not for linux!

    Also have created the custom 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

    That doesn’t helps either..

    here is my phpinfo,
    http://owsnap.com/phpinfo.php

    Any ideas?

Viewing 1 replies (of 1 total)
  • changing from shared host to VPS ( linux centos32 , kloxo panel running)

    What do you have set for:

    url_rewriter.tags

    ?

    The php info file shows (for local and master):

    a=href,area=href,frame=src,input=src,form=fakeentry

    Try:

    a=href,area=href,frame=src,input=src,form=,fieldset=

    See:

    http://php.net/manual/en/session.configuration.php#ini.url-rewriter.tags

    If not that, then mod_rewrite may not be running or misconfigured in some way, which is not really the scope of this forum – please seek support on the support forum for your server type.

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove index.php from permalinks?’ is closed to new replies.