• flexomatic

    (@flexomatic)


    Due to some apache version that doesn’t like wordpress my permalink setting page looks blank like this:

    How can I change from the ugly ?page_id=56 version to the fancy ones?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Roopesh Jain

    (@roopesh-jain)

    Hello flexomatic,

    First of all please go to your database phpmyadmin.

    then you can find table name “wp_options” click on this.then you can see a row with “option_name=permalink_structure”(you can find it in page number 2). you have to just edit the “option_value” field of “option_name=permalink_structure”.

    you can edit by this :: “/%postname%” or “/%category%/%postname%”

    or you can read more here about Permalinks :

    http://codex.wordpress.org/Using_Permalinks

    Thankyou

    Thread Starter flexomatic

    (@flexomatic)

    I changed like you said, the permalink are changed to /%postname% but it gives me a broken link on the website:

    http://dl.dropbox.com/u/865278/misc3/permalink.png

    http://dl.dropbox.com/u/865278/misc3/broken.png

    Roopesh Jain

    (@roopesh-jain)

    Please Make sure your .htaccess file is there in root directory of wordpress folder.
    if no then create it and paste it in the root directory.

    and paste the below code in it.

    # 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

    thankyou

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to change permalinks without using the Dashboard???’ is closed to new replies.