<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>István Ványi&#187; Web Design</title>
	<atom:link href="http://www.vanyi.net/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vanyi.net</link>
	<description>István Ványi personal site</description>
	<lastBuildDate>Sat, 14 Aug 2010 13:45:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>301 redirect from http(s) non-www to www</title>
		<link>http://www.vanyi.net/web-design/301-redirect-from-https-non-www-to-www/</link>
		<comments>http://www.vanyi.net/web-design/301-redirect-from-https-non-www-to-www/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 17:02:38 +0000</pubDate>
		<dc:creator>Istvan</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.vanyi.net/web-design/301-redirect-from-https-non-www-to-www/</guid>
		<description><![CDATA[How to redirect http:// non-www  to http://www?
Add this code into your .htaccess file:

?View Code BASH#Always use the www. in the URL address
RewriteCond %&#123;HTTP_HOST&#125; !^www\.
RewriteRule ^&#40;.*&#41;$ http://www.%&#123;HTTP_HOST&#125;/$1 &#91;R=301,L&#93;

How to redirect http:// non-www to https://www?
Add this code into your .htaccess file:

?View Code BASH#Always use the www. in the URL address
RewriteCond %&#123;HTTP_HOST&#125; !^www\.
RewriteRule ^&#40;.*&#41;$ https://www.%&#123;HTTP_HOST&#125;/$1 &#91;R=301,L&#93;

301 redirect [...]<p><a href="http://www.vanyi.net/web-design/301-redirect-from-https-non-www-to-www/">301 redirect from http(s) non-www to www</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>



Related posts:<ol><li><a href='http://www.vanyi.net/web-design/setting-up-favicon-ico/' rel='bookmark' title='Permanent Link: Setting up favicon.ico'>Setting up favicon.ico</a></li>
<li><a href='http://www.vanyi.net/linux/one-line-sed/' rel='bookmark' title='Permanent Link: One line sed'>One line sed</a></li>
<li><a href='http://www.vanyi.net/faq/free-flash-image-gallery-yo5oee/' rel='bookmark' title='Permanent Link: Free flash image gallery &#8211; yo5oee'>Free flash image gallery &#8211; yo5oee</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>How to redirect http:// non-www  to http://www?</h2>
<p>Add this code into your .htaccess file:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p421code3'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4213"><td class="code" id="p421code3"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#Always use the www. in the URL address</span>
RewriteCond <span style="color: #000000; font-weight: bold;">%</span><span style="color: #7a0874; font-weight: bold;">&#123;</span>HTTP_HOST<span style="color: #7a0874; font-weight: bold;">&#125;</span> <span style="color: #000000; font-weight: bold;">!</span>^www\.
RewriteRule ^<span style="color: #7a0874; font-weight: bold;">&#40;</span>.<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>$ http:<span style="color: #000000; font-weight: bold;">//</span>www.<span style="color: #000000; font-weight: bold;">%</span><span style="color: #7a0874; font-weight: bold;">&#123;</span>HTTP_HOST<span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$1</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #007800;">R</span>=<span style="color: #000000;">301</span>,L<span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></td></tr></table></div>

<h2>How to redirect http:// non-www to https://www?</h2>
<p>Add this code into your .htaccess file:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p421code4'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4214"><td class="code" id="p421code4"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#Always use the www. in the URL address</span>
RewriteCond <span style="color: #000000; font-weight: bold;">%</span><span style="color: #7a0874; font-weight: bold;">&#123;</span>HTTP_HOST<span style="color: #7a0874; font-weight: bold;">&#125;</span> <span style="color: #000000; font-weight: bold;">!</span>^www\.
RewriteRule ^<span style="color: #7a0874; font-weight: bold;">&#40;</span>.<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>$ https:<span style="color: #000000; font-weight: bold;">//</span>www.<span style="color: #000000; font-weight: bold;">%</span><span style="color: #7a0874; font-weight: bold;">&#123;</span>HTTP_HOST<span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$1</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #007800;">R</span>=<span style="color: #000000;">301</span>,L<span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></td></tr></table></div>

<p><a href="http://www.vanyi.net/web-design/301-redirect-from-https-non-www-to-www/">301 redirect from http(s) non-www to www</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>


<p>Related posts:<ol><li><a href='http://www.vanyi.net/web-design/setting-up-favicon-ico/' rel='bookmark' title='Permanent Link: Setting up favicon.ico'>Setting up favicon.ico</a></li>
<li><a href='http://www.vanyi.net/linux/one-line-sed/' rel='bookmark' title='Permanent Link: One line sed'>One line sed</a></li>
<li><a href='http://www.vanyi.net/faq/free-flash-image-gallery-yo5oee/' rel='bookmark' title='Permanent Link: Free flash image gallery &#8211; yo5oee'>Free flash image gallery &#8211; yo5oee</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.vanyi.net/web-design/301-redirect-from-https-non-www-to-www/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up favicon.ico</title>
		<link>http://www.vanyi.net/web-design/setting-up-favicon-ico/</link>
		<comments>http://www.vanyi.net/web-design/setting-up-favicon-ico/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 17:00:12 +0000</pubDate>
		<dc:creator>Istvan</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.vanyi.net/web-design/setp-up-favicon-ico/</guid>
		<description><![CDATA[&#8220;A favicon (short for favorites icon), also known as a website icon, shortcut icon, url icon, or bookmark icon  is a 16×16 pixel square icon associated with a particular website  or webpage. A web designer can create such an icon and install it into a website (or webpage) by several means, and most [...]<p><a href="http://www.vanyi.net/web-design/setting-up-favicon-ico/">Setting up favicon.ico</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>



Related posts:<ol><li><a href='http://www.vanyi.net/linux/linux-kernel-2-6-31-has-usb-3-0-support/' rel='bookmark' title='Permanent Link: Linux Kernel 2.6.31 Has USB 3.0 Support'>Linux Kernel 2.6.31 Has USB 3.0 Support</a></li>
<li><a href='http://www.vanyi.net/faq/free-flash-image-gallery-yo5oee/' rel='bookmark' title='Permanent Link: Free flash image gallery &#8211; yo5oee'>Free flash image gallery &#8211; yo5oee</a></li>
<li><a href='http://www.vanyi.net/linux/one-line-sed/' rel='bookmark' title='Permanent Link: One line sed'>One line sed</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>&#8220;A favicon (short for favorites icon), also known as a website icon, shortcut icon, url icon, or bookmark icon  is a 16×16 pixel square icon associated with a particular website  or webpage. A web designer can create such an icon and install it into a website (or webpage) by several means, and most graphical web browsers will then make use of it. Browsers that provide favicon support typically display a page&#8217;s favicon in the browser&#8217;s address bar and next to the page&#8217;s name in a list of bookmarks. Browsers that support a tabbed document interface typically show a page&#8217;s favicon next to the page&#8217;s title on the tab.&#8221; &#8211; <a href="http://en.wikipedia.org/wiki/Favicon" target="_blank" rel="nofollow">Wiki</a></p>
<p>Create a favicon.ico and upload it to your server eg http://www.yoursever.com/favicon.ico (check it with your browser). Then add this HTML code into the &lt;head&gt; &#8230; &lt;/head&gt; of your webpage.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p418code6'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4186"><td class="code" id="p418code6"><pre class="html" style="font-family:monospace;">&lt;link rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; href=&quot;/favicon.ico&quot;&gt;</pre></td></tr></table></div>

<p>Useful favicon related links:<br />
<a href="http://html-kit.com/favicon/" target="_blank" rel="nofollow">Online favicon.ico generator</a><br />
<a href="http://tools.dynamicdrive.com/favicon/" target="_blank" rel="nofollow">Another online favicon.ico generator</a><br />
<a href="http://www.favicon.cc/" target="_blank" rel="nofollow">Create favicon.ico</a></p>
<p><a href="http://www.vanyi.net/web-design/setting-up-favicon-ico/">Setting up favicon.ico</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>


<p>Related posts:<ol><li><a href='http://www.vanyi.net/linux/linux-kernel-2-6-31-has-usb-3-0-support/' rel='bookmark' title='Permanent Link: Linux Kernel 2.6.31 Has USB 3.0 Support'>Linux Kernel 2.6.31 Has USB 3.0 Support</a></li>
<li><a href='http://www.vanyi.net/faq/free-flash-image-gallery-yo5oee/' rel='bookmark' title='Permanent Link: Free flash image gallery &#8211; yo5oee'>Free flash image gallery &#8211; yo5oee</a></li>
<li><a href='http://www.vanyi.net/linux/one-line-sed/' rel='bookmark' title='Permanent Link: One line sed'>One line sed</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.vanyi.net/web-design/setting-up-favicon-ico/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top web2 JQuery Plugins</title>
		<link>http://www.vanyi.net/web-design/top-web2-jquery-plugins/</link>
		<comments>http://www.vanyi.net/web-design/top-web2-jquery-plugins/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 17:03:41 +0000</pubDate>
		<dc:creator>Istvan</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.vanyi.net/uncategorized/top-web2-jquery-plugins/</guid>
		<description><![CDATA[1. Fancy Thumbnail Hover Effect w/ jQuery


2. tipsy  &#8211; Facebook-style tooltip plugin for jQuery

Top web2 JQuery Plugins is a post from: István Ványi


Related posts:Free flash image gallery &#8211; yo5oee
Measuring, control devices, instruments and RF spectrum analyzers
<p><a href="http://www.vanyi.net/web-design/top-web2-jquery-plugins/">Top web2 JQuery Plugins</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>



Related posts:<ol><li><a href='http://www.vanyi.net/faq/free-flash-image-gallery-yo5oee/' rel='bookmark' title='Permanent Link: Free flash image gallery &#8211; yo5oee'>Free flash image gallery &#8211; yo5oee</a></li>
<li><a href='http://www.vanyi.net/homemade/measuring-control-devices-instruments-and-rf-spectrum-analyzers/' rel='bookmark' title='Permanent Link: Measuring, control devices, instruments and RF spectrum analyzers'>Measuring, control devices, instruments and RF spectrum analyzers</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3><a title="Fancy Thumbnail Hover Effect w/ jQuery" href="http://www.sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/" target="_blank">1. Fancy Thumbnail Hover Effect w/ jQuery</a></h3>
<p><a title="Fancy Thumbnail Hover Effect w/ jQuery" href="http://www.sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/" target="_blank"><img src="http://www.sohtanaka.com/web-design/examples/image-zoom/preview.jpg" alt="Fancy Thumbnail Hover Effect w/ jQuery" title="Top web2 JQuery Plugins" /></a></p>
<hr />
<h3><a title="Fancy Thumbnail Hover Effect w/ jQuery" href="http://onehackoranother.com/projects/jquery/tipsy/" target="_blank">2. tipsy  &#8211; Facebook-style tooltip plugin for jQuery</a></h3>
<p><a title="tipsy  - Facebook-style tooltip plugin for jQuery" href="http://onehackoranother.com/projects/jquery/tipsy/" target="_blank"><img src="http://www.vanyi.net/wp-content/uploads/2009/08/jquery-tipsy-plugin.jpg" alt="tipsy  - Facebook-style tooltip plugin for jQuery" title="Top web2 JQuery Plugins" /></a></p>
<p><a href="http://www.vanyi.net/web-design/top-web2-jquery-plugins/">Top web2 JQuery Plugins</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>


<p>Related posts:<ol><li><a href='http://www.vanyi.net/faq/free-flash-image-gallery-yo5oee/' rel='bookmark' title='Permanent Link: Free flash image gallery &#8211; yo5oee'>Free flash image gallery &#8211; yo5oee</a></li>
<li><a href='http://www.vanyi.net/homemade/measuring-control-devices-instruments-and-rf-spectrum-analyzers/' rel='bookmark' title='Permanent Link: Measuring, control devices, instruments and RF spectrum analyzers'>Measuring, control devices, instruments and RF spectrum analyzers</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.vanyi.net/web-design/top-web2-jquery-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
