• I use xampp as my local server to develop my theme, However, when I change permalinks from default to “post”, none the page can not been open in my website and all shows no object found. I did some research and some people says it is because my XAMPP’S rewrite module did not open, but I checked it is actived, so i have no idea what I supposed to do now.

    If your .htaccess file were writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]
    </IfModule>

The topic ‘XAMPP can not change permalinks’ is closed to new replies.