XF 2.2 Breadcrumbs Issue with WWW

rotpar

Active member
Licensed customer
Hi,

I have an issue with the Breadcrumbs. My root domain is on https:// without WWW. so https://forum.blablaxyz.com
It seems like there some threads which show the breadcrumb URLs like Home with WWW. How is that possible? The entire forum is set to https://forum and not WWW? Any idea?
 
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:
Back
Top Bottom