Permalink Options does not change

Make sure your Apache web server have mod_rewrite.

Create .htaccess on your wordpress root directory with following content (or add these to existing .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