Search Engine Optimization is the use of various techniques to aid web pages' ranking in search engines. Non-programming SEO questions should be asked on network site Pro Webmasters - http://webmasters.stackexchange.com !
114
votes
13answers
101k views
Generic htaccess redirect www to non-www
I would like to redirect www.example.com to example.com.
The following htaccess code makes this happen:
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 ...
105
votes
10answers
67k views
Replacing H1 text with a logo image: best method for SEO and accessibility?
It seems like there are a few different techniques out there, so I was hoping to get a "definitive" answer on this...
On a website, it's common practice to create a logo that links to the homepage. I ...
65
votes
11answers
12k views
“Single-page” JS websites and SEO
There are a lot of cool tools for making powerful "single-page" JavaScript websites nowadays. In my opinion, this is done right by letting the server act as an API (and nothing more) and letting the ...
61
votes
14answers
6k views
Why do some websites add “Slugs” to the end of URLs? [closed]
Many websites, including this one, add what are apparently called slugs - descriptive but as far as I can tell useless bits of text - to the end of URLs.
For example, the URL the site gives for this ...
51
votes
20answers
10k views
URLs: Dash vs. Underscore [closed]
Should it be /about_us or /about-us?
From usability point of view, I personally think /about-us is much better for end-user yet Google and most other websites (and javascript frameworks) use ...
48
votes
17answers
7k views
What makes a “friendly URL”?
First of all, please excuse my ignorance on this...I'm totally willing to accept that my opinion on this is wrong. In fact, I suspect that it is given the sheer number of web developers that seem to ...
44
votes
16answers
2k views
Is SEO knowledge important for web developers? [closed]
Looking for some SEO (Search engine optimization) questions on Stackoverflow, I saw ambivalent reactions to these questions. Some were closed as "not programming related" or were downvoted, others ...
33
votes
6answers
16k views
Noscript Tag, JavaScript Disabled Warning and Google Penalty
I have been using a noscript tag to show a warning when users have JavaScript disabled or are using script blocking plugins like Noscript. The website will not function properly if JavaScript is ...
28
votes
7answers
6k views
What are the important meta tags I must put in my website?
There seems to be huge number of meta tags you can set. I'm guessing that some of them are more important than others.
What are the most important metatags to supply and why?
Do I even need meta ...
26
votes
2answers
6k views
pushstate and seo
Many people have been saying, use pushState rather than hashbang.
What I don't understand is, how would you be search engine friendly without using hashbang?
Presumably your pushState content is ...
26
votes
6answers
6k views
Do SEO-friendly URLs really affect a page's ranking?
SEO-friendly URLs are all the rage these days. But do they actually have a meaningful impact on a page's ranking in Google and other search engines? If so, why? If not, why not?
(Note that I would ...
22
votes
6answers
569 views
Is it good to include title=“” within your links?
I am developing a website and for the main navigation, I was thinking it would be a good idea to include the title attribute.
<a href="/results/" title="Results">Results</a>
Is this a ...
22
votes
2answers
8k views
How to properly use h1 in HTML5
Which of the following is the correct way to structure a page:
1) h1 only in header
<header>
<h1>Site title</h1>
<nav>...</nav>
</header>
<section>
...
20
votes
11answers
5k views
Does a “blog” sub-domain help the pagerank of your main site?
I have my main application site https://drchrono.com, and I have a blog sub-domain under http://blog.drchrono.com. I was told by some bloggers that the blog sub-domain of your site helps the pagerank ...
20
votes
2answers
3k views
How do search engines deal with AngularJS applications?
I see two issues with AngularJS application regarding search engines and SEO:
1) What happens with custom tags? Do search engines ignore the whole content within those tags? i.e. suppose I have
...
19
votes
7answers
6k views
How to redirect without www using Rails 3 / Rack?
I understand there are a lot of questions that answer this. I'm familiar with .htaccess and nginx.conf methods, but I do not have access to such traditional configuration methods on heroku.
Simone ...
19
votes
3answers
3k views
What's the least redundant way to make a site with JavaScript-generated HTML crawlable?
After reading Google's policy on making Ajax-generated content crawlable, along with many developers' blog posts and Stackoverflow Q&A threads on the subject, I'm left with the conclusion that ...
18
votes
7answers
4k views
Trailing slash in URLs - which style is preferred?
Hi I would like to know your opinions for and against using a trailing slash in a URL ?
So, for example - should my URL look like that "/about-us/" or like that "/about-us" -
I am fully aware to the ...
18
votes
5answers
25k views
how to force google to re-index a page [closed]
A website i've made have been recently hacked and Google indexed that hacked homepage and now display unrelevant text on search result.
Hack have been resolve but search result still the same.
His ...
17
votes
7answers
1k views
HTML meta keyword/description element, useful or not?
Does filling out HTML meta description/keyword tags matter for SEO?
17
votes
2answers
4k views
How does the Android Market search engine work? [closed]
How do you improve the position of an app in Android Market search results? The apps don't seem to be sorted on downloads.
Edit: The scope of this question is limited to working with the Android ...
16
votes
2answers
3k views
What is the etymology of 'slug'? [closed]
Is slug a completely arbitrary word? Or does it stand for something? I used the word in a conversation with someone and when they asked me why it's called that I realized I didn't know.
I know what ...
16
votes
11answers
8k views
Is it alright to use multiple h1 tags on the same page, but style them differently?
I have a webpage that I use h1 tags multiple times within various DIVs and I style h1 for each div to be the appropriate size.
For example...
#content h1 {
font-size:22px;
}
#left-nav h1 {
...
16
votes
3answers
5k views
What is meant by the rel=“bookmark” link attribute?
What is the purpose of the rel="bookmark" attribute in <a> tags? For example:
<a href="http://stackoverflow.com/questions/ask" rel="bookmark">Click Here</a>
Does it serve any SEO- ...
15
votes
6answers
4k views
ASP.net MVC support for URL's with hyphens
Is there an easy way to get the MvcRouteHandler to convert all hyphens in the action and controller sections of an incoming URL to underscores as hyphens are not supported in method or class names.
...
15
votes
7answers
689 views
which is better to add two names (-) or(_)
hi when i write css or html i found that i want add two name like this
web-development
web_development
which one is better according SEO or write style name, file name or image name.
15
votes
6answers
13k views
Multiple domains for one site: alias or redirect?
I'm setting up a number sites right now and many of them have multiple domains. The question is: do I alias the domain (with ServerAlias) or do I Redirect the request?
Obviously ServerAlias is ...
15
votes
1answer
6k views
What is the purpose of <meta name=“MSSmartTagsPreventParsing” content=“TRUE”>?
What it does? is there any pros to add this in for all browser?
15
votes
6answers
10k views
Does google index pages with hidden divs?
I am starting to redesign and develop a site that contains a lot of text and I am thinking of ways to organize the information on the site so that it looks cleaner. On some parts of the site I would ...
14
votes
11answers
4k views
Can an “SEO Friendly” url contain a unique ID?
I'd like to start using "SEO Friendly Urls" but the notion of generating and looking up large, unique text "ids" seems to be a significant performance challenge relative to simply looking up by an ...
14
votes
13answers
4k views
How can I create a SEO friendly dash-delimited url from a string?
Take a string such as:
In C#: How do I add "Quotes" around string in a comma delimited list of strings?
and convert it to:
...
14
votes
6answers
786 views
Using node.js to serve content from a Backbone.js app to search crawlers for SEO
Either my google-fu has failed me or there really aren't too many people doing this yet. As you know, Backbone.js has an achilles heel--it cannot serve the html it renders to page crawlers such as ...
13
votes
7answers
5k views
SEO: Relative URL vs Absolute URL
Do search engines care if I use relative paths in my internal links instead of absolute paths?
<a href="/">My site root</a>
<a href="http://mysite.com/">My site root</a>
13
votes
5answers
2k views
is a negative text-indent considered cloaking?
I am using the negative-text-indent technique I learned to show a text-image to the user, while hiding the corresponding actual text.
This way the user sees the fancy styled text while search engines ...
13
votes
4answers
2k views
What is the ideal length of an URL slug
To make pretty URL's from article titles I am using a simple function. However lately I an concerned about the ideal length of these "slugs". It is said that too many dashes are bad.
However some ...
13
votes
3answers
3k views
Java code/library for generating slugs (for use in pretty URLs)
Web frameworks such as Rails and Django has built-in support for "slugs" which are used to generate readable and SEO-friendly URLs:
Slugs in Rails
Slugs in Django
A slug string typically contains ...
13
votes
3answers
657 views
How to create special links in search results?
How do you create the special links which show under sites in search results? Say I search for Stack Overflow at Google, I get a result close to this:
The links I am asking about are outlined in ...
13
votes
6answers
2k views
Will a “Site Down for Maintenance” page break SEO?
In a situation when you are doing a major code release and/or database schema change to a production environment is it detrimental to SEO to put up a "Gone Fishin'" page while the upgrade happening?
...
13
votes
2answers
2k views
Making AJAX Applications Crawlable? How to build a simple web service on Google App Engine to produce HTML Snapshots?
Real World Problem:
I have my app hosted on Heroku, who (to my knowledge) are unable to offer a solution for running a Headless (GUI-less) Browser - such as HTMLUnit - for generating HTML Snapshots ...
12
votes
4answers
12k views
.htaccess 301 redirect of single page
After a site redesign, I've got a couple of pages that need to be redirected. Everything is staying on the same domain, just a couple of things have been reorganised and/or renamed. They are of the ...
12
votes
5answers
907 views
Does the position of a slug in a URL matter?
FOR SEARCH ENGINE OPTIMIZATION PURPOSES, does the location of the slug within a URL matter?
There's no doubt that you could code URL slugs to work properly in any order. I'm more interested to know ...
12
votes
4answers
3k views
Google SEO and hidden elements
Will google ignore words that are inside the elements that are set to "display: none" in css?
Example:
<div id="under_meny" style="display:none;">About Us | Contact Us</div>
It looks ...
12
votes
5answers
2k views
Is text-indent: -9999px a bad technique for replacing text with images, and what are the alternatives?
This article say we should avoid using this technique. This one says it's awesome. Is it true that Google looks inside CSS files for text-indent: -9999px; and punishes you? :|
I'm using that property ...
12
votes
4answers
2k views
Ajax Crawling: old way vs new way (#!)
Old way
When I used to load page asynchronously in projects that required the content to be indexed by search engines I used a really simple technique, that is
<a href="page.html" ...
12
votes
4answers
2k views
How to add page title in url in asp.net mvc? (url generation)
How to dynamically create urls/links like:
www.restaurant.com/restaurant/restaurant-name-without-some-characters-like-space-coma-etc/132
what are the keywords i can use to google some articles on ...
12
votes
8answers
349 views
Configuring any CDN to deliver only one file no matter what url has been requested
I am currently working on a new project where the entire page should be implemented in HTML5/JS working against an API/JSON. Since the entire application should only consist of one HTML file ...
11
votes
14answers
1k views
How does Google use HTML tags to enhance the search engine?
I know that Google’s search algorithm is mainly based on pagerank. However, it also does analysis and uses the structure of the document H1, H2, title and other HTML tags to enhance the search ...
11
votes
5answers
1k views
Getting Good Google PageRank [closed]
In SEO people talk a lot about Google PageRank. It's kind of a catch 22 because until your site is actually big and you don't really need search engines as much, it's unlikely that big sites will link ...
11
votes
7answers
7k views
Does Google crawl AJAX content?
On the home page of my site I use JQuery's ajax function to pull down a list of recent activity of users.
The recent activity is displayed on the page, and each line of the recent activity includes a ...
10
votes
10answers
13k views
SEO : Is h1 tag that's hidden using display:none given prominence by Search engines?
When content is hidden by CSS (display:none), is that read by Search engines or are sites penalised for that ? In my case, due to some CMS and other reasons, I need to serve alternative content to ...
