I have a website that seems to go to https://whatevercoolsite.com fine when I type it. But, SEM Rush keeps showing https://whatevercoolsite.com AND https://www.whatevercoolsite.com in its reporting as getting traffic to both. Here's the part of my htaccess that works with that part. Do you see anything missing or incorrect? # Redirect all requests to https
https://www to https:// Problem
3
I have a website that seems to go to https://whatevercoolsite.com fine when I type it. But, SEM Rush keeps showing https://whatevercoolsite.com AND https://www.whatevercoolsite.com in its reporting as getting traffic to both. Here's the part of my htaccess that works with that part. Do you see anything missing or incorrect?
# Redirect all requests to https
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://whatevercoolsite.com/$1 [R=301,L]
</IfModule>
# End redirect all requests to https
# Begin redirect from www. to normal domain
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.whatevercoolsite\.com$
RewriteRule ^(.*)$ https://whatevercoolsite.com/$1 [R=301,L]
</IfModule>
# End redirect from www. to normal domain
# Redirect all requests to https
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://whatevercoolsite.com/$1 [R=301,L]
</IfModule>
# End redirect all requests to https
# Begin redirect from www. to normal domain
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.whatevercoolsite\.com$
RewriteRule ^(.*)$ https://whatevercoolsite.com/$1 [R=301,L]
</IfModule>
# End redirect from www. to normal domain
- stamfoordd Banned
- stamfoordd Banned
- MikeFriedman
- expmrb
- lovefightwrite
- demineur ligne
Next Topics on Trending Feed
-
3