Permalink is not working,
-
I’ve set Permalink to Numeric, and my .htaccess changed to:
# BEGIN WordPress
# The directives (lines) between “BEGIN WordPress” and “END WordPress” are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule># END WordPress
=========
I’ve installed wp in domain.com/blog/ but permalik is not working ang gives me “Not Found” error.
in apache2 configuration I have AllowOverride All, and also I tested .htaccess and it worked fine (I changed it to “deny from all” and my site was not accessible, just want to make sure apache can read it), seems something in wordpress has a problem, is there anything I should set in wp config file?
- The topic ‘Permalink is not working,’ is closed to new replies.