Mobile app version of vmapp.org
Login or Join
Murphy175

: 302 redirect but leave the url intact Am I able to issue a 302 redirect but leave the URL intact? I want to track accesses to a URL in Google Analytics but just display my home page. I

@Murphy175

Posted in: #Htaccess #Redirects

Am I able to issue a 302 redirect but leave the URL intact?

I want to track accesses to a URL in Google Analytics but just display my home page.

I am doing this on the assumption that Google Analytics tracks the URL in the address bar - is this correct?

i.e.
example.com/landingpage

google sees URL of example.com/landingpage
user sees content from example.com (home page)

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Murphy175

1 Comments

Sorted by latest first Latest Oldest Best

 

@Mendez628

To begin with, a 302 redirect does not do what you want on a functional level. A correct 302 redirect will actually redirect you from example.com/landingpage to example.com. That means the user will see example.com in the address bar and Google will as well.

In order for you to have two URLs with the same content you would need to duplicate the content which is bad from an SEO standpoint for 2 reasons:


Google will see it as duplicate content and possibly mark it as spam or just downgrade it for being duplicate
Both example.com/landingpage and example.com will compete with each other for the same keywords and SERPs which means you essentially split the SEO value of your pages in half.


In general if you want someone to go to example.com/landingpage and see the content on example.com you would do a 301 redirect which is a permanent redirect.

The other solution is to use a canonical link tag like this, <link rel='canonical' href='http://www.example.com/' /> on the page, example.com/landingpage. This works because it tells Google that the content is duplicate or very similar and which page is the correct page to show when someone searches for terms found on both pages and at the same time lets you use example.com/landingpage as a landing page for paid ads for example.

A 302 redirect is generally for temporary redirects or redirects for unspecified reasons. In general Google does not give you any benefit for 302 redirects.

See this, en.wikipedia.org/wiki/302_redirect#HTTP_status_codes_3xx for more info on what all redirect types mean.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme