• Hi, i am getting a problem regarding my site’s url, it is dynamic and i wanna change it on my way or more user friendly.

    The current article url is – http://socialexaminer.eu5.org/?p=32
    And my desired one should be like – siteurl/”desired post name“.

    So, i need to know how to change it, I am totally a fresher.

Viewing 1 replies (of 1 total)
  • Configuring your .htaccess file requires you to upload your htaccess file using FTP or allowing wordpress to write that file. In most cases you wont be able to change the htaccess file using wordpress admin panel.

    What you can do is configure it first thru the WordPress admin panel under
    Settings → Permalinks panel

    http://codex.wordpress.org/Using_Permalinks

    Usually it require you to upload .htaccess file with this code:

    # 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

Viewing 1 replies (of 1 total)
  • The topic ‘How to update .htaccess on my server’ is closed to new replies.