Hi!
I want to remove www from my URL so it will look like http://myurl.com/. I have a code from Yoast.com but don't know where to input it on my forum. Please help me..
Here's the code:
Source: https://yoast.com/how-to-remove-www-from-your-url-with-mod_rewrite/
I want to remove www from my URL so it will look like http://myurl.com/. I have a code from Yoast.com but don't know where to input it on my forum. Please help me..
Here's the code:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
Source: https://yoast.com/how-to-remove-www-from-your-url-with-mod_rewrite/