have trouble with other types of permalink
-
I installed a new self-hosted wordpress blog. I can access the home page now. However, if I changed permalink format to anything other than the default ?p= , I cannot access any single posts?
I already have .htaccess on wordpress root with this content
# 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
and .htaccess permission is set to 777
my blog => https://thaiwrite.net
Any suggestion what could be the problem here?
- The topic ‘have trouble with other types of permalink’ is closed to new replies.