Permalink error on new blogs
-
When a new site is created by a new user the permalink to their categories doesnt work.
Instead a error message appear:
This is somewhat embarrassing, isnβt it?
It seems we canβt find what youβre looking for. Perhaps searching, or one of the links below, can help.I have found a way to fix this manually, by only updating the permalinks.
By typing the url/usersblogurl/wp-admin/options-permalink.phpMy .htaccess:
RewriteEngine On RewriteBase / #uploaded files RewriteRule ^(.*/)?files/$ index.php [L] RewriteCond %{REQUEST_URI} !.*wp-content/plugins.* RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteCond %{REQUEST_URI} ^.*/wp-admin$ RewriteRule ^(.+)$ $1/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule . - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] <IfModule mod_security.c> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule>Created a test blog:
http://sveablogg.se/testy
-click on category
How can I fix this?
Viewing 13 replies - 1 through 13 (of 13 total)
Viewing 13 replies - 1 through 13 (of 13 total)
The topic ‘Permalink error on new blogs’ is closed to new replies.