herbshirt
Member
Posted 2 years ago #
As a custom permalink I'm using: /%category%/%postname%/
What should be: http://neurovision.com.au/services/website-design-small-business-brisbane/
instead it's redirecting to:
http://neurovision.com.au/serviceswebsite-design-small-business-brisbane/website-design-small-business-brisbane/
Is it something to do with my htaccess ? What should I be looking for?
Thankyou,
Herb.
looks like it....reset your permalinks.
Save to default, then back to custom
Hi,
Reset your desired permalink from wordpress admin area and add this code in htaccess of your blog/site:
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Now, check with your blog posts and pages.
Thanks,
Shane G.