XF 2.2 Breadcrumbs Issue with WWW

Make sure you have ticked Enable board URL canonicalization in basic options. Alternatively you can use a redirect in .htaccess to redirect www to non-www

Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} www.example.com$
RewriteRule ^(.*)$ http://example.com$1 [R=301,L]
 
Last edited:
Top Bottom