Previously ranking #1 in google, web page has 301 / url rewrite, indexed but now showing for keyword search?
-
Two web pages on my website, previously ranked well in google, consistent top 3 places for 6months+, but when the site was modified, these two pages previously ending .php had the page names changed to the keyword to further improve (or so I thought). Since then the page doesn't rank at all for that search term in google.
I used google webmaster tools to remove the previous page from Cache and search results, re submitted a sitemap, and where possible fixed links to the new page from other sites. On previous advice to fix I purchased links, web directories, social and articles etc to the new page but so far nothing... Its been almost 5 months and its very frustrating as these two pages previously ranked well and as a landing page ended in conversions.
This problem is only appearing in google. The pages still rank well in Bing and Yahoo. Google has got the page indexed if I do a search by the url, but the page never shows under any search term it should, despite being heavily optimised for certain terms. I've spoke to my developers and they are stumped also, they've now added this text to the effected page(s) to see if this helps.
Header("HTTP/1.1 301 Moved Permanently");
$newurl=SITE_URL.$seo;
Header("Location:$newurl");Can Google still index a web page but refuse to show it in search results? All other pages on my site rank well, just these two that were once called something different has caused issues?
Any advice? Any ideas, Have I missed something? Im at a loss...
-
Do you want to give me the old url to double check for you? You can personal message me if you don't want it to be public.
-
I should also say that was for the old URL it says Success with the button "submit to index" no mention of any 301?
-
Ran the fetch as google, says Success with a button "submit to index". Should I click the submit button?
-
If you used the remove URL tool to only remove page 1 from the index then that's why it won't be ranking, I'm guessing page 2 wasn't removed using this tool? I don't think the canonical tag would help you in this situation as you're now telling Google that page 2 is the same as a page you've already told them not to index!
Just to confirm, when you used the redirect checker did you put in the old url and it says 301? It's worth using the fetch as GoogleBot tool inside Webmaster tools and then adding the old url to be crawled again so that they can see it has been moved permanently. If the 301 was only implemented properly 2 weeks ago there is still the chance it will come back!
-
Thanks for the advice, just checked and it is saying "301 Moved Permanently" Which I'm assuming is correct.
But I must admit Im confused as to why the page is not ranking well. The page is a list of products and it ran on to a second page, the url being the same just with /page-2 at the end. Weirdly the page 2 started ranking but not the original. I then added rel="canonical" back to the original page, thinking this would help, but all this did was stop indexing page 2 and the original page still doesn't show...
Tearing my hair out!!!
The latest 301 redirect code was added 2 weeks ago, it did have 301 redirect before, but it was done in a different way...
**Previous Code : **
Header("Location:/$seo,true,301"); -
It sounds like you went about this in the wrong way. What you should have done first is 301 redirect the old url to the new url and then update all you sites links to also point to the new url. You have used webmaster tools to specifically tell Google not to index that page and therefore it has lost all of it's authority (the 301 would have passed most of the authority on from the start)
Use this tool and insert your old url and make sure the header returned definitely says "301 Moved permanently". How long ago was the 301 implemented? It may still recover once Google picks up the redirect.
Got a burning SEO question?
Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.
Browse Questions
Explore more categories
-
Moz Tools
Chat with the community about the Moz tools.
-
SEO Tactics
Discuss the SEO process with fellow marketers
-
Community
Discuss industry events, jobs, and news!
-
Digital Marketing
Chat about tactics outside of SEO
-
Research & Trends
Dive into research and trends in the search industry.
-
Support
Connect on product support and feature requests.
Related Questions
-
Suddenly keywords Disappeared from Google Search Results
Hello Guys Please help me, suddenly all of my site's keywords are disappeared from google search result, most of keywords are no.1 on google but today after 6pm i see the traffic decreasing and when i search my keywords there is no any keywords in search result. Only homepage keyword is showing. Please Help what is Happening with me.
Intermediate & Advanced SEO | | mianazeem4180 -
Indexed Pages Different when I perform a "site:Google.com" site search - why?
My client has an ecommerce website with approx. 300,000 URLs (a lot of these are parameters blocked by the spiders thru meta robots tag). There are 9,000 "true" URLs being submitted to Google Search Console, Google says they are indexing 8,000 of them. Here's the weird part - When I do a "site:website" function search in Google, it says Google is indexing 2.2 million pages on the URL, but I am unable to view past page 14 of the SERPs. It just stops showing results and I don't even get a "the next results are duplicate results" message." What is happening? Why does Google say they are indexing 2.2 million URLs, but then won't show me more than 140 pages they are indexing? Thank you so much for your help, I tried looking for the answer and I know this is the best place to ask!
Intermediate & Advanced SEO | | accpar0 -
URL Parameters Settings in WMT/Search Console
On an large ecommerce site the main navigation links to URLs that include a legacy parameter. The parameter doesn’t actually seem to do anything to change content - it doesn’t narrow or specify content, nor does it currently track sessions. We’ve set the canonical for these URLs to be without the parameter. (We did this when we started seeing that Google was stripping out the parameter in the majority of SERP results themselves.) We’re trying to best strategize on how to set the parameters in WMT (search console). Our options are to set to: 1. No: Doesn’t affect page content’ - and then the Crawl field in WMT is auto-set to ‘Representative URL’. (Note, that it's unclear what ‘Representative URL’ is defined as. Google’s documentation suggests that a representative URL is a canonical URL, and we've specifically set canonicals to be without the parameter so does this contradict? ) OR 2. ‘Yes: Changes, reorders, or narrows page content’ And then it’s a question of how to instruct Googlebot to crawl these pages: 'Let Googlebot decide' OR 'No URLs'. The fundamental issue is whether the parameter settings are an index signal or crawl signal. Google documents them as crawl signals, but if we instruct Google not to crawl our navigation how will it find and pass equity to the canonical URLs? Thoughts? Posted by Susan Schwartz, Kahena Digital staff member
Intermediate & Advanced SEO | | AriNahmani0 -
How to 301 Redirect /page.php to /page, after a RewriteRule has already made /page.php accessible by /page (Getting errors)
A site has its URLs with php extensions, like this: example.com/page.php I used the following rewrite to remove the extension so that the page can now be accessed from example.com/page RewriteCond %{REQUEST_FILENAME}.php -f
Intermediate & Advanced SEO | | rcseo
RewriteRule ^(.*)$ $1.php [L] It works great. I can access it via the example.com/page URL. However, the problem is the page can still be accessed from example.com/page.php. Because I have external links going to the page, I want to 301 redirect example.com/page.php to example.com/page. I've tried this a couple of ways but I get redirect loops or 500 internal server errors. Is there a way to have both? Remove the extension and 301 the .php to no extension? By the way, if it matters, page.php is an actual file in the root directory (not created through another rewrite or URI routing). I'm hoping I can do this, and not just throw a example.com/page canonical tag on the page. Thanks!0 -
Homepage not showing up in Google even when searching exact title tag
why does my site not show up in Google even when you search exact homepage title tag or business name (Brand-It Web Design)? You can even search the exact title tag for my site and it does not show up. If you search site:branditwebdesign.com you will see that it is there. But just the homepage doesn't show up in search for anything else. We have probably tried everything in the world to get this working. Any suggestions?
Intermediate & Advanced SEO | | Brand_It_Web_Design0 -
Will multiple domains from the same company rank for the same keyword search?
I'm trying to convince people that we need good marketing reasons for starting multiple domains, as it will be more difficult to rank multiple sites. Does anyone know if Google actively discourages multiple domains from the same company appearing in the search results for the same keyword? We are creating a separate content website which is related to an existing company website. Would you agree that is best to have these sites on one domain with the content site on a sub-domain perhaps? I'm worried about duplication of effort and cross-keyword targeting in particular. These sites would not have duplicate content.
Intermediate & Advanced SEO | | RG_SEO0 -
Monthly Searches from Google Keyword Planner
I've used Google Adwords, Google Analytics and competitors keywords to compile a master list. I'm now looking to evaluate metrics on the keywords / phrases / long tail phrases. My question is this ... Based on Googles use of Geo Targeting, would I be better to evaluate metrics (Avg. Monthly Searches, Competition, Avg CPC) based on United Kingdom or my local city (I only operate in my local city). I am looking to use the results to redesign my website. I will use the favorable keywords / phrases / long tail keywords to implement a new menu, new content page creation, articles, etc. Thanks Mark
Intermediate & Advanced SEO | | Mark_Ch0 -
Getting Google in index but display "parent" pages..
Greetings esteemed SEO experts - I'm hunting for advice: We operate an accommodation listings website. We monetize by listing position in search results, i.e. you pay more to get higher placing in the page. Because of this, while we want individual detailed listing pages to be indexed to get the value of the content, we don't really want them appearing in Google search results. We ideally want the "content value" to be attributed to the parent page - and google to display this as the link in the search results instead of the individual listing. Any ideas on how to achieve this?
Intermediate & Advanced SEO | | AABAB0