Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I've created a website that connects stores with brands. Many stores can have the same brand.
You can search for a brand and see what stores sells this brand (picture).
www.mysite.com/?id=23&brand=my+brand+name
If you open a store, you can see what brands they have.
www.mysite.com/?id=235&store=my+store+name
When you open a brand, the entire store list is loaded but hidden. Through jQuery and drop down list I can change city and the map and store list will be updated dynamically.
But if I want to score higher on search engines, e.g. when users google for "dovre oslo"
, I would like the search engine to find all the stores
Since I'm trying to rank higher on search engines, would it be better if the entire page reloaded and adding city name in the URL?
And when opening a store page, should I add the city name in the URL?
After some discussions and thoughts, I've come to the conclusion that it doesn't matter if I use drop downs and jQuery.
All my pages are listed in my site maps and therefore visible to search engines.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Stumbled across this: http://get.unbounce.com/dynamic-text-replacement/
Seems to be a wysiwg landing page creator. So I was just wondering if it's possible to do Dynamic Text replacement normally? Pretty much just need 1 Landing page that will have text (keywords) change depending on what the user searched from search engine. An dif possible also have images change out depending on what the user searched.
How can this be accomplished?
AdWords lets you use what is called "ValueTrack" in the click-through URLs for your ads. So you could have your clickthrough URL in AdWords as "http://www.example.com?keyword={keyword}" then when someone clicks on your ad, AdWords will replace {keyword} with the actual keyword from the search, or for display ads the best-match keyword.
You could then have some code on your site (could be client or server side - you could do it with Javascript) to look for the keyword query string parameter from the URL, extract the value of that parameter, then place it into a onto your site.
Hope that helps
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I noticed that when one searches for some companies in Google, the results come back with nice categories. For example, if you Google sqlteam, the result contains SqlTeam website sections such as Forums, SQL Server Version, Weblogs, SQL Server Links, etc.
When I Google for the site whatiftoptions, I don't get these nice categories. What do I need to do in order for Google to display categories in search result?
Thanks.
Unfortunately, only Google knows the exact method for generating Sitelinks for your site. It is kept secret to prevent sites from abusing the ranking system, as having a site with Sitelinks can easily improve its image in the search results. Commonly sitelinked sites have the following attributes:
Site ranks first for the keyword(s) that generate the Sitelinks listing
Easily spiderable, structured navigation.
Fairly high natural search traffic.
High click through rates from the search results page.
Popular internal pages appear as Sitelinks.
Unique titles and meta descriptions on internal pages.
You can read more about this at http://www.hochmanconsultants.com/articles/sitelinks.shtml
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have a movie database related site. In this we are providing latest movie news, trailers, movie database, posters etc.
I am using a 124 chars long 3 sentences meta description as the index page's meta description. And a 6 phrase meta keywords also. ( in index page ) and showing the same description and keywords in all the other pages.
My doubt is, would I need to give the different description and keywords to other pages in the site ? i.e., diff description for latest movie page, like diff desc for latest news page ?
I am very new to SEO and which one is more SEO friendly? The same description or different for diff pages?
It is always better to use keywords and description according to the content you are serving with any URL.
If your page is serving the news of a newly released movie set your keywords and description related to that movie.
You can build a functionality in your administration where these values can be entered dynamically to each article you serve and display them in your html head
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have developed a website for a firm that deals in pumps, valves and diesel engines. They require that when an interested user searches with some keywords like "Pump Dealers" or "Valve Dealers", their site should appear in the results. Currently I am not aware of how I can go about this, so my question is what should I do in order for better page ranking. I am using meaningful page titles and have enough text in every page.
Any suggestion is welcome.
Firstly Pagerank is irrelevant these days, so don't worry about that.
You should ensure that you use Google's Webmaster Tools to check that Google knows about your site etc. This will tell you what things it is coming up for on Google.
Make sure that the page has the text on it you want to rank for - as you mention, titles, headers etc will help but don't over do it.
The main thing to do is to get links to your site – write interesting blog posts, contact customers etc so they link to you.
It really depends on who your competition is for those terms - if there are already 10 huge companies ranking for those terms then you are stuck.
The other way to do this is to buy Adwords – this will likely cost upwards of $5-10 a day to get any meaningful traffic though.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Scenario :I am trying to build a Mobile Entertainment Portal. It will enable users to download Music & Movies to their Cell Phones...
Problem Exp : Suppose I upload 100 folders of Songs, each folder is for one Album. I want a way to generate a page with all the folders name (Album Name) in it. If user click on the page, they should be taken to a page where they get list of all songs in the album. Clicking on any song name will let them download it.
Can it be done anyway or will I have to manually design each of the 3 pages for each album. If I do that, its time consuming and also will be difficult to change anything like footer, header...
Also I want to know if I can monitor Realtime Download Statistics.
You create a database
You create one or more template pages, each taking a relevant ID, such as AlbumID (which you might be calling FolderID) as a URL parameter
At runtime, the page logic fetches the data (by AlbumID) and lays it out nicely for the user.
This sort of thing is covered in every entry-level database programming text. A quick search turned up this and this.