| S. No | Italian Social Bookmarking Sites | PR |
| 1 | oknotizie.virgilio.it/ | 7 |
| 2 | www.reddit.com/r/it | 3 |
| 3 | www.wikio.it/ | 7 |
| 4 | www.diggita.it/ | 5 |
| 5 | www.liquida.it/ | 6 |
| 6 | fai.informazione.it/ | 5 |
| 7 | www.ilbloggatore.com/ | 2 |
| 8 | ziczac.it/a/ | 6 |
| 9 | www.fainotizia.it/ | 5 |
| 10 | www.italianbloggers.it/ | 4 |
| 11 | www.easymash.com/index/ | 1 |
| 12 | www.feedburner.it/ | 1 |
| 13 | www.notizieflash.com/ | 2 |
| 14 | www.agoravox.it/ | 6 |
| 15 | www.digo.it/ | 4 |
| 16 | www.bloghissimo.it/ | 5 |
| 17 | www.postanotizie.it/ | 1 |
| 18 | www.dicevi.com/ | 3 |
| 19 | www.piiros.com/ | 2 |
Monday, 2 February 2015
High PR Italian Social Bookmarking Sites List, Top Italian Directory Sites
Thursday, 29 January 2015
French Social Bookmarking Sites List, Top and High PR French Social Bookmarking Websites
French Social Bookmarking Sites List 2015
S.NO
|
Bookmarking Website URL
|
PR
|
AlexaRank
|
1
|
2
|
1073416
|
|
2
|
3
|
7560352
|
|
3
|
3
|
263316
|
|
4
|
1
|
305476
|
|
5
|
1
|
998822
|
|
6
|
3
|
101781
|
|
7
|
2
|
2346394
|
|
8
|
3
|
983847
|
|
9
|
2
|
396235
|
|
10
|
3
|
6191929
|
|
11
|
5
|
66067
|
|
12
|
6
|
182556
|
|
13
|
4
|
1938131
|
|
14
|
3
|
253669
|
|
15
|
2
|
280828
|
|
16
|
2
|
14753927
|
|
17
|
4
|
88
|
|
18
|
2
|
11426866
|
|
19
|
3
|
2625549
|
|
20
|
1
|
2217248
|
|
21
|
3
|
226341
|
|
22
|
5
|
730785
|
|
23
|
3
|
3412648
|
|
24
|
2
|
325579
|
|
25
|
4
|
35235
|
|
26
|
3
|
3067419
|
|
27
|
2
|
3031148
|
|
28
|
3
|
9632895
|
|
29
|
1
|
1243542
|
|
30
|
5
|
141795
|
|
31
|
1
|
3047196
|
|
32
|
3
|
1131411
|
|
33
|
1
|
305476
|
Friday, 12 September 2014
Meta Viewport Tag, Responsive Meta Tag, Configure the Viewport
Configure the Viewport
This concept trigger when Page
Speed Ideas find that your web page does not specify a viewport, or identifies
a viewport that does not adjust to different gadgets.
Overview
A viewport manages how a webpage
is shown on a phone device. Without a viewport, phone devices will render the
webpage at a typical desktop display size, scaly to fit the display. Setting a
viewport gives control over the webpage's size and scaling on different
gadgets.
Meta Viewport Tag To Control the Website Layout On Mobile Browsers.
Recommendations:
Webpages enhanced to show well on
mobile phones should consist of a meta viewport in the head of the papers
specifying width=device-width,
initial-scale=1.
<meta name="viewport" content="width=device-width, initial-scale=1"><meta name="viewport" content="width=device-width">
Meta Viewport Tag
With the help of the viewport meta tag you can control the
webpage dimentions and scaling that should be included in the document’s head.
Fixed-Width Viewport
You can set to a specific width through viewport tag
such as width=320 or width=1024. This tag can be useful stopgape to ensure webpages width fixed
dimensions view as expected.
Redirect non www to www with htaccess
If your website is having canonical issue then you need to fix
this issue on priority. Canonical issue is when website showing the same data
with www or non-www. Kindly follow the below redirection code.
Redirecting non-www to www with .htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Redirecting www to non-www
RewriteEngine On
RewriteCond %{HTTP_HOST} !^my-domain\.com$ [NC]
RewriteRule ^(.*)$ http://my-domain.com/$1 [R=301,L]
Redirecting non-www to www with .htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Redirecting www to non-www
RewriteEngine On
RewriteCond %{HTTP_HOST} !^my-domain\.com$ [NC]
RewriteRule ^(.*)$ http://my-domain.com/$1 [R=301,L]
Enable Gzip Compression Code .htacces
Enable Gzip Compression
You can compress your website
HTML and CSS file with gzip through which typically can save sixty to eighty
percent file size. It takes less time to load your web pages which is good to
make your website search engine friendly.
If your website is slower than
your competitor website then ebabling compression code is pretty much. Use the
shared below code.
How to enable Gzip compression on your website
Most of the people reading or searching this by adding some code to a file called .htaccess on web host/server.
You can enable Gzip copression code on your website through .htacess file.
Save the .htaccess file and
refresh your webpage.
# Enable Gzip Compression<IfModule mod_deflate.c>
SetOutputFilter DEFLATE
<IfModule mod_setenvif.c>
# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
# BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex won't work. You can use the following
# workaround to get the desired effect:
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
</IfModule>
<IfModule mod_headers.c>
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</IfModule>
</IfModule>
Enable compression on Apache webservers
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
Enable compression on NGINX webservers
gzip on;
gzip_comp_level 2;
gzip_http_version 1.0;
gzip_proxied any;
gzip_min_length 1100;
gzip_buffers 16 8k;
gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
# Disable for IE < 6 because there are some known problems
gzip_disable "MSIE [1-6].(?!.*SV1)";
# Add a vary header for downstream proxies to avoid sending cached gzipped files to IE6
gzip_vary on;
Location:
United States
Saturday, 16 August 2014
Top 21 High PR Free Photo Sharing Sites List 2015
Welcome to SEO Wing
Image/Photo sharing sites list. are you looking for free image
sharing sites list? Do you want to share high quality and comical
images? You are at the right place because I am sharing here top and
high PR photo sharing sites list 2014 with update PR (Page Rank) and
Alexa traffic rank.
I have collected
these sites lists, especially for those people who love photography.
You can share your
photos on these websites in any format like JPG, GIF, PNG, etc. So
don't waste your time and use mentioned below the sites after
creating an account.
Sr.
No
|
Website
Name
|
PR
(Page Rank)
|
Alexa
Rank
|
1
|
www.flickr.com |
9
|
104
|
2
|
www.photobucket.com |
7
|
261
|
3
|
www.instagram.com |
9
|
30
|
4
|
www.photoshop.com |
7
|
10,264
|
5
|
www.fotolog.com |
6
|
4,494
|
6
|
www.imgur.com |
6
|
4,494
|
7
|
www.redbubble.com |
6
|
3,500
|
8
|
www.deviantart.com |
7
|
157
|
9
|
www.dropshots.com |
4
|
27,239
|
10
|
www.pict.com |
4
|
274,807
|
11
|
www.fotki.com |
5
|
10,246
|
12
|
www.shutterfly.com |
6
|
1,515
|
13
|
www.snapfish.com |
4
|
8,499
|
14
|
www.23hq.com |
5
|
22,013
|
15
|
picasaweb.google.com |
8
|
1
|
16
|
www.tinypic.com |
7
|
1,101
|
17
|
weheartit.com |
6
|
1,149
|
18
|
imageshack.com |
5
|
5,766
|
19
|
www.imagevenue.com |
4
|
1,619
|
20
|
www.imagebam.com |
5
|
886
|
21
|
www.twitpic.com |
7
|
2,117
|
Shared above Image
sharing website list offer certain storage space, Use free storage
to share your nice and unique images.
Location:
United States
Saturday, 9 August 2014
Leverage Browser Caching Code .htaccess
How to Leverage Browse Caching of Your Website and Blog Via .htaccess?
We should always be looking for methods to enhance the
performance of our website or Blog. One of the simplest methods to enhance our website
or blog performance and speed is to leverage browser caching.
If you have
checked your website for speed and noticed that you need to leverage browser
caching code, here is how you do it.
How
to Enable The Leverage Browser Caching Code?
The best
common way is to add code to a file known as .htaccess on your server/host.
The
.htaccess file manages many crucial things for your website. Mentioned below code tells browsers what to
cache and how long to "remember" it. It should be added to the top or bottom of
your .htaccess file.
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>
## EXPIRES CACHING ##
Refresh
your browser after save the .htaccess file.
Labels:
leverage browse caching,
Leverage browse caching code,
Leverage browse caching code .htaccess
Location:
United States
Subscribe to:
Posts (Atom)

