Quote:
Originally Posted by Dave
If you use http://cdjw.org/forums/ as your main URL, setup a 301 redirection rule in .htaccess to redirect www to the non-www version of your site.
Code:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
|
Yeah I know I can redirect, but thats not really a fix.
--------------- Added [DATE]1494518003[/DATE] at [TIME]1494518003[/TIME] ---------------
Quote:
Originally Posted by Dave
If you use http://cdjw.org/forums/ as your main URL, setup a 301 redirection rule in .htaccess to redirect www to the non-www version of your site.
Code:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
|
I do appreciate it though.