Does part of a keyword phrase need to be repeated in a sub folder?
-
I have a page that targets "web design" at /web-design/
I also have a page at /web-design/price-cost-calculator/
In the second page the target keyword is "web design price" and "web design cost".
Do I need to repeat the "web design" part in the sub folder, or is it sufficient to have it in the root folder?
I.e., /web-design/price-cost-calculator/ or /web-design/web-design-price-cost-calculator/
-
Do not repeat it. The structure of web-design/price-cost-calculator is good and will get the keywords you want in the URL. On the other hand, if you lengthen it out and say the keyword again you'd be more likely to lose keywords in the URL because of how much of the URL google actually shows in the SERPs.
-
The first option i.e. /web-design/price-cost-calculator/ looks natural and is a better choice. Although you can have the second option as well but it doesn't look nice from users' point of view and gives an impression of over optimization.
Regards
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
-
Recent redirect leading to keyword ranking drop
Hey all! Someone I work with recently redirected one of their site pages via Squarespace. They used Squarespace-provided code to make a 301 redirect. Following this, the primary keywords for the page that was redirect to have dropped pretty significantly. Any Squarespace pros out there who can help me figure out what's going on?
Technical SEO | | kelseyworsham0 -
Exact keyword in domain - does it work
Hi, a hypothetical question: let's say there is a fresh domain travelnorway.com (of course there is already domain like that, I am using it just as a example) Will it rank first on googe for "travel norway" query on google?( I mean in situation where 30 other companies are trying to rank for the same phrase) Thanks!
Technical SEO | | LeszekNowakowski0 -
Selective 301 redirections of pages within folders
Redirection Puzzle - it's got me puzzled anyhow! The finished website has just been converted from an old aspx affair to a wordpress site. Some directory structures have changed significantly; there appears to be a load of older medical articles that have not been added back in and it sounds unlikely that they will be. Therefore unmatched old news articles need to be pointed to the top news page to keep hold of any link value they may have accrued. The htaccess file starts with ithemes security's code, Followed by the main wordpress block and I have added the user redirects to the final section of the htaccess file . I have been through the redirects and rewrites line by line to verify them and the following sections are giving me problems. This is probably just my aging brain failing to grasp basic logic. If I can tap into anybody's wisdom for a bit of help I would appreciate it. My eyes and brain are gone to jelly. I have used htaccesscheck.com to check out the underlying syntax and ironed out the basic errors that I had previously missed. The bulk of the redirects are working correctly. #Here there are some very long media URLs which are absent on the new site and I am simply redirecting visiting spiders to the page that will hold media in future. Media items refuse to redirect
Technical SEO | | TomVolpe
Line 408 redirect 301 /Professionals/Biomedicalforum/Recordedfora/Rich%20Media%20http:/kplayer.kcl.ac.uk/ess/echo/presentation/15885525-ff02-4ab2-b0b9-9ba9d97ca266 http://www.SITENAME.ac.uk/biomedical-forum/recorded-fora/ Line 409 redirect 301 /Professionals/Biomedicalforum/Recordedfora/Quicktime%20http:/kplayer.kcl.ac.uk/ess/echo/presentation/15885525-ff02-4ab2-b0b9-9ba9d97ca266/media.m4v http://www.SITENAME.ac.uk/biomedical-forum/recorded-fora/ Line 410 redirect 301 /Professionals/Biomedicalforum/Recordedfora/Mp3%20http:/kplayer.kcl.ac.uk/ess/echo/presentation/15885525-ff02-4ab2-b0b9-9ba9d97ca266/media.mp3 http://www.SITENAME.ac.uk/biomedical-forum/recorded-fora/ #Old site pagination URLs redirected to new "news" top level page - Here I am simply pointing all the pagination URLs for the news section, that were indexed, to the main news page. These work but append the pagination code on to the new visible URL. Have I got the syntax correct in this version of the lines to suppress the appended garbage? RewriteRule ^/LatestNews.aspx(?:.*) http://www.SITENAME.ac.uk/news-events/latest-news/? [R=301,L] #On the old site many news directories (blog effectively) contained articles that are unmatched on the new site, have been redirected to new top level news (blog) page: In this section I became confused about whether to use Redirect Match or RewriteRule to point the articles in each year directory back to the top level news page. When I have added a redirectmatch command - it has been disabling the whole site! Despite my syntax check telling me it is syntactically correct. Currently I'm getting a 404 for any of the old URLs in these year by year directories, instead of a successful redirect. I suspect Regex lingo is not clicking for me 😉 My logic here was rewrite any aspx file in the directory to the latest news page at the top. This is my latest attempt to rectify the fault. Am I nearer with my syntax or my logic? The actual URLs and paths have been substituted, but the structure is the same). So what I believe I have set up is: in an earlier section; News posts that have been recreated in the new site are redirected 1 - 1 and they are working successfully. If a matching URL is not found, when the parsing of the file reaches the line for the 1934 directory it should read any remaining .aspx URL request and rewrite it to the latest news page as a 301 and stop processing this block of commands. The subsequent commands in this block repeat the process for the other year groups of posts. Clearly I am failing to comprehend something and illumination would be gratefully received. RewriteRule ^/Blab/Blabbitall/1934/(.*).aspx http://www.SITENAME.ac.uk/news-events/latest-news/ [R=301,L] #------Old site 1933 unmatched articles redirected to new news top level page RewriteRule ^/Blab/Blabbitall/1933/(.*).aspx http://www.SITENAME.ac.uk/news-events/latest-news/ [R=301,L] #------Old site 1932 unmatched articles redirected to new news top level page RewriteRule ^/Blab/Blabbitall/1932/(.*)/.aspx http://www.SITENAME.ac.uk/news-events/latest-news/ [R=301,L] #------Old site 1931 unmatched articles redirected to new news top level page RewriteRule ^/Blab/Blabbitall/1931/(.*)/.aspx http://www.SITENAME.ac.uk/news-events/latest-news/ [R=301,L] #------Old site 1930 unmatched articles redirected to new news top level page RewriteRule ^/Blab/Blabbitall/1930/(.*)/.aspx http://www.SITENAME.ac.uk/news-events/latest-news/ [R=301,L] Many thanks if anyone can help me understand the logic at work here.0 -
Strange keyword showing in GA
Hi All, Since last two days I am seeing a very strange keyword appearing in Google Analytics. Why such keyword appearing in GA? any idea? Please see keyword in attachment. Thanks ay6hH6z
Technical SEO | | Alick3000 -
Hiding sub directory from a url string
I have been trying for a few hours now to hide a sub-directory from a url string on a joomla site using .htaccess every method i have found either has no effect or breaks the site. i am aiming to change all links with component in them: http://mysite.com/component/music/7335 to http://mysite.com/music/7335 I am using the latest Joomla 2.5 install but not sure how or if that affects anything. Any help would be greatly appreciated
Technical SEO | | omega0 -
Site Got Hacked! Need Help!
Hi Guys. One of my friend's site got hacked 2 weeks ago, because of bad php script hole and Google indexed the pages which got hacked and all the Title Tags and Descriptions are indexed in the Google which is very embarssing situation. All adult content texts. Right now we have solved the problem and closed the hole submitted the new sitemap, but Google is no longer coming back and refreshining the SERP. We have been waiting for 3 weeks for now? What should we do? Methods we tried so far: 1.Cleaned all meta tags generate new sitemap and submitted that to Google 2.Built some backlinks 3.Built some social bookmarks Thanks!
Technical SEO | | DigitalJungle0 -
Importance of keyword in the content to rank well
Well, I am very beginner seo. our website is www.theprinterdepo.com and our main keyword for the moment is refurbished printers, but there might be hundreds of more keywords. I was analyzing the SERPs and found that for our keyword, the first 2 websites that come up have very different content 1.http://www.geeks.com/products.asp?cat=PRN They rank first, but I dont see a lot of text with the keyword in their text or links 2. http://www.valstarprinters.com/ They mention the keywords lots of times in the text, probably they are doing keyword stuffing? So this makes me thing, how the 1st one ranked there? just by link builiding?
Technical SEO | | levalencia10 -
Domain name with separated/non-separated keywords
I start a new webshop within a month about spices and coffee. I'm thinking about the domain name to take. I would like to get visitors from coffee and spice keyword searches. How much does it matter (in terms of SEO) if I use spiceandcoffee instead of spice-and-coffee? (The site will be hungarian and it sounds easy to remember without the hypen: fuszer-es-kave or fuszereskave.) Does Google weighing more separated keywords in domain, instead of non-separated?
Technical SEO | | joo0