Try this following Searching String " Latest Dofollow Blogs " , "Latest Dofollow Blogs 'Current Year' " and so on.For example Latest Dofollow Blogs 2010 and so on.
Try this following searching string " inurl:domain.com site:domain.com Comments '(1)' + 'Keyword' ". Here make focus on the syntax pattern of the commented portion of the website try to navigate one or two pages of the website to check the commented syntax.
Achieve the Top Rankings and Reputation in the major search engines like Google, Yahoo! and MSN through their paid and unpaid services
Showing posts with label Seo Services India. Show all posts
Showing posts with label Seo Services India. Show all posts
Tuesday, July 27, 2010
Friday, June 25, 2010
10 htaccess Hacks Every SEO Should Know
by ssrivastav on 25 June 2010
There’s a lot that you can do with an htaccess file, and of course, things can get pretty advanced in a hurry. Here, we’re going to keep things pretty simple. These are the 10 basic htaccess hacks that every webmaster should know.
1. Force Caching with htaccess
Use: The following htaccess code won’t help the initial pageload, but it will significantly help subsequent pageloads by sending 304 status when requested elements haven’t been modified.
FileETag MTime Size
ExpiresActive on
ExpiresDefault “access plus x seconds”
I generally set the cache for one day (86400 seconds). You can also set different expirations for each file type by breaking each file type up into separate ExpiresByType lines such as:
ExpiresByType image/gif “access plus x seconds”
ExpiresByType text/css “access plus x seconds”
Simple!
2. Set a Custom 404 Page with htaccess
Use: I think this one is self explantatory. Just change ‘/notfound.html’ to match the path to your custom 404 page.
ErrorDocument 404 /notfound.html
3. Implement a 301 Redirect with htaccess
Use: If you have permanently changed the URL structure on your site (via either optimization change or CMS migration), you will want to implement 301 redirects from the old URL to the new URL.
The syntax for a basic 301 redirect is:
Redirect 301 relative/path/to/oldurl/ http://www.domain.com/newurl/
Explanation:
The first URL should be a relative path to the old URL and the second one should be an absolute path to the new URL.
4. Only allow specific IP addresses in certain directories
This is especially useful for admin directories. I generally set my home IP and work IP as the only allowable IPs who can even attempt a login. Unlike other .htaccess hacks, this one doesn’t work from the root folder. You will need to create a new .htaccess file, put the following code in it, and upload it to your admin directory.
AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName “Example Access Control”
AuthType Basic
order deny,allow
deny from all
allow from xx.xx.xx.xx
To allow a second IP, just add another ‘allow from’ line.
5. Prevent Image Hot Linking with htaccess
Removed. Here is a MUCH better way to go about this thanks to Maurizio Petrone
6. Enable gzip with htaccess
Gzip is a means of compressing the files on your server so they will load faster. To enable gzip, just
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE !no-gzip !gzip-only-text/html
7. Remove ‘category’ from a URL with htaccess
Many content management sytems use the ‘category’ URL segment. For instance:
http://makeitrank.com/category/category-name
Well, that’s fine, and it’s necessary to make the CMS work the way it’s supposed to, but it doesn’t need to be visible to do its job. Just drop the following code into your htaccess file to get rid of it.
RewriteRule ^category/(.+)$ http://www.yourdomain.com/$1 [R=301,L]
8. Define any page as the home page with htaccess
You can set any page as the homepage by adding the following to the htaccess file in your root directory.
DirectoryIndex myfile
9. Disable Directory Browsing
You want to keep people out of any directories that might reveal security weaknesses — for instance, plugin directories.
You can block vistors from browsing the directories by adding the following line to the htaccess file in the directory you’d like to block:
Options All -Indexes
10. Protect your htaccess file
Lastly, you want to protect your htaccess file. Hopefully your host has protected it for you, but you can’t be too safe with these things. The following hack will prevent anybody from accessing your htaccess:
order allow,deny
deny from all
Are there any useful htaccess hacks I’ve left out? Let me know!
There’s a lot that you can do with an htaccess file, and of course, things can get pretty advanced in a hurry. Here, we’re going to keep things pretty simple. These are the 10 basic htaccess hacks that every webmaster should know.
1. Force Caching with htaccess
Use: The following htaccess code won’t help the initial pageload, but it will significantly help subsequent pageloads by sending 304 status when requested elements haven’t been modified.
FileETag MTime Size
ExpiresActive on
ExpiresDefault “access plus x seconds”
I generally set the cache for one day (86400 seconds). You can also set different expirations for each file type by breaking each file type up into separate ExpiresByType lines such as:
ExpiresByType image/gif “access plus x seconds”
ExpiresByType text/css “access plus x seconds”
Simple!
2. Set a Custom 404 Page with htaccess
Use: I think this one is self explantatory. Just change ‘/notfound.html’ to match the path to your custom 404 page.
ErrorDocument 404 /notfound.html
3. Implement a 301 Redirect with htaccess
Use: If you have permanently changed the URL structure on your site (via either optimization change or CMS migration), you will want to implement 301 redirects from the old URL to the new URL.
The syntax for a basic 301 redirect is:
Redirect 301 relative/path/to/oldurl/ http://www.domain.com/newurl/
Explanation:
The first URL should be a relative path to the old URL and the second one should be an absolute path to the new URL.
4. Only allow specific IP addresses in certain directories
This is especially useful for admin directories. I generally set my home IP and work IP as the only allowable IPs who can even attempt a login. Unlike other .htaccess hacks, this one doesn’t work from the root folder. You will need to create a new .htaccess file, put the following code in it, and upload it to your admin directory.
AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName “Example Access Control”
AuthType Basic
order deny,allow
deny from all
allow from xx.xx.xx.xx
To allow a second IP, just add another ‘allow from’ line.
5. Prevent Image Hot Linking with htaccess
Removed. Here is a MUCH better way to go about this thanks to Maurizio Petrone
6. Enable gzip with htaccess
Gzip is a means of compressing the files on your server so they will load faster. To enable gzip, just
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE !no-gzip !gzip-only-text/html
7. Remove ‘category’ from a URL with htaccess
Many content management sytems use the ‘category’ URL segment. For instance:
http://makeitrank.com/category/category-name
Well, that’s fine, and it’s necessary to make the CMS work the way it’s supposed to, but it doesn’t need to be visible to do its job. Just drop the following code into your htaccess file to get rid of it.
RewriteRule ^category/(.+)$ http://www.yourdomain.com/$1 [R=301,L]
8. Define any page as the home page with htaccess
You can set any page as the homepage by adding the following to the htaccess file in your root directory.
DirectoryIndex myfile
9. Disable Directory Browsing
You want to keep people out of any directories that might reveal security weaknesses — for instance, plugin directories.
You can block vistors from browsing the directories by adding the following line to the htaccess file in the directory you’d like to block:
Options All -Indexes
10. Protect your htaccess file
Lastly, you want to protect your htaccess file. Hopefully your host has protected it for you, but you can’t be too safe with these things. The following hack will prevent anybody from accessing your htaccess:
order allow,deny
deny from all
Are there any useful htaccess hacks I’ve left out? Let me know!
Labels:
Seo Services India
Thursday, May 6, 2010
URL OPTIMIZATION TECHNIQUES
Domain Name Length Limitations
Maximum character limit - 63 characters plus the TLD (interesting domain name info)
File/Folder Naming Limitations
Maximum character limit – uncertain
URL Length Limitations
Maximum character limit – 2083 characters in IE, even longer for other browsers
Domain Names
Limit length; technical limitations of 63 characters is far to long for an effective domain name
Try to obtain a domain name that contains a keyphrase relevant to your targeted ontent
Avoid spammy URLs that have numerous hyphens (-) or mispellings
Web 2.0 style names (IE Flickr) are all the rage (mostly because the real words are already taken
Folder/File Names
Separate words using – or _ so they can be read as separate words (IE avoid “hereismyseofolder”)
Limit overall length, compress directory structure into file naming convention to reduce directory levels
Overall URL Structure
Limit the number of directory levels from the domain name to the file, avoid unnecessary folders
Limit the overall length of the URL, avoid unnecessary words and characters
Use keyphrases and real words – avoid shortened or meaningless words like /prod/ and /og/
Avoid session IDs and other session based parameters in URLs
Avoid having more than 2-3 name/value pairs in dynamic URL strings
Rewrite dynamic URLs into ‘clean’ or static URLs wherever possible
Domain naming:
Bad: “eseeyohgyde.ws”
Better: “www.SeoServices.com”
Best: “www.SEOservices.com“
Folder/Directory Naming:
Bad: “/na/do/”
Better: “/content/seo-guide/”
Best: “/seo/free-seo-guide/”
File Naming:
Bad: “prod.jsp?v=09&w=87&x=65&y=43&z=21″
Better: “pageID_0987654321.php”
Best: “free_seo_guide.php”
Overall URL Structure:
Bad: “https://Mispelt.ws/na/do/prod.jsp?v=09&w=87&x=65&y=43&z=21″
Better: “www.SaverSites.com/content/seo-guide/pageID_0987654321.php”
Best: “www.SaverSites.com/free_seo_guide.php
Maximum character limit - 63 characters plus the TLD (interesting domain name info)
File/Folder Naming Limitations
Maximum character limit – uncertain
URL Length Limitations
Maximum character limit – 2083 characters in IE, even longer for other browsers
Domain Names
Limit length; technical limitations of 63 characters is far to long for an effective domain name
Try to obtain a domain name that contains a keyphrase relevant to your targeted ontent
Avoid spammy URLs that have numerous hyphens (-) or mispellings
Web 2.0 style names (IE Flickr) are all the rage (mostly because the real words are already taken
Folder/File Names
Separate words using – or _ so they can be read as separate words (IE avoid “hereismyseofolder”)
Limit overall length, compress directory structure into file naming convention to reduce directory levels
Overall URL Structure
Limit the number of directory levels from the domain name to the file, avoid unnecessary folders
Limit the overall length of the URL, avoid unnecessary words and characters
Use keyphrases and real words – avoid shortened or meaningless words like /prod/ and /og/
Avoid session IDs and other session based parameters in URLs
Avoid having more than 2-3 name/value pairs in dynamic URL strings
Rewrite dynamic URLs into ‘clean’ or static URLs wherever possible
Domain naming:
Bad: “eseeyohgyde.ws”
Better: “www.SeoServices.com”
Best: “www.SEOservices.com“
Folder/Directory Naming:
Bad: “/na/do/”
Better: “/content/seo-guide/”
Best: “/seo/free-seo-guide/”
File Naming:
Bad: “prod.jsp?v=09&w=87&x=65&y=43&z=21″
Better: “pageID_0987654321.php”
Best: “free_seo_guide.php”
Overall URL Structure:
Bad: “https://Mispelt.ws/na/do/prod.jsp?v=09&w=87&x=65&y=43&z=21″
Better: “www.SaverSites.com/content/seo-guide/pageID_0987654321.php”
Best: “www.SaverSites.com/free_seo_guide.php
Labels:
Seo Services India
Subscribe to:
Posts (Atom)