Permalinks – Postname Not Found
-
Only “Default” PermaLinks work..Looked at htaccess and also httpd.conf and baffled. 404 Not Found. All I can think is canonical somehow problem. Surely it is something simple I have neglected in my first WP install. Otherwise I think I need to install AskApache-Debug?
The apache module for rewrite is active/works though it is not a .c file but a .so file
Craig
Running WP 3.8.1
Apache/2.2.15 (CentOS) Server
.htaccess
# 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
httpd.conf (xxxxx.xxx subbed for actual servername)
<VirtualHost *:80>
ServerName xxxxxx.xxx
ServerAlias https://www.xxxxx.xxx
DocumentRoot /var/www/html/sites/xxxxx.xxx
ErrorLog logs/xxxxx.xxx-error_log
CustomLog logs/xxxxx.xxx-access_log common
RewriteEngine On
RewriteOptions Inherit
AllowOverride All
</VirtualHost>
- The topic ‘Permalinks – Postname Not Found’ is closed to new replies.