<?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>BlogmyQuery - BMQ &#187; Blogs</title>
	<atom:link href="http://blogmyquery.com/index.php/tag/blogs/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogmyquery.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 15:17:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Permalinks on IIS6 (without mod_rewrite)</title>
		<link>http://blogmyquery.com/index.php/2009/01/permalinksiis6/</link>
		<comments>http://blogmyquery.com/index.php/2009/01/permalinksiis6/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 03:23:57 +0000</pubDate>
		<dc:creator>jvanamali</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Permalinks on IIS6]]></category>
		<category><![CDATA[Permalinks using custom 404 error page]]></category>
		<category><![CDATA[without mod_rewrite]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogmyquery.com/?p=46</guid>
		<description><![CDATA[Pretty Permalinks are SEO / Human friendly urls for your blogs. Wordpress uses mod_rewrite module which is not supported by [...]]]></description>
			<content:encoded><![CDATA[<p>Pretty Permalinks are SEO / Human friendly urls for your blogs. Wordpress uses mod_rewrite module which is not supported by IIS.</p>
<p>If you are using IIS7 and have administrative privileges you can use <a title="Microsoft URL Rewrite" href="http://learn.iis.net/page.aspx/460/using-url-rewrite-module/" target="_blank">Microsoft&#8217;s URL Rewrite Module</a> , Read <a title="Wordpress URL Rewrite" href="http://codex.wordpress.org/Using_Permalinks" target="_blank">this </a>for more information.</p>
<p>This article briefs about the technique used to make the permalinks work with IIS6.</p>
<p><span id="more-46"></span></p>
<h4>Working with Permalinks on IIS6 (without admin privileges/ istallation)</h4>
<ul>
<li><strong>Option 1 (put index.php at the start of permalink)</strong></li>
<pre class="brush: css;">/index.php/%year%/%monthnum%/%day%/%postname%/</pre>
</ul>
<p>to make this work in IIS , add the below lines to php.ini and store in the web root or download the file from <a title="Word Press Permalink" href="http://blogmyquery.com/downloads/php.zip" target="_blank">here</a></p>
<pre><code>      </code>
<pre class="brush: css;"> cgi.fix_pathinfo = 1
 cgi.force_redirect = 0
</pre>
<ul>
<li><strong>Option 2 (Permalinks CSS using Custom 404 Redirect)</strong></li>
<p><span style="color: #008000;"><strong>PHP version</strong></span> (see <a title="PHP version custom 404 Redirect" href="http://tech.einaregilsson.com/2007/07/30/pretty-wordpress-permalinks-on-iis/" target="_blank">here</a> for referred article)</p>
<p>Save the below code as a php file (Ex: 404-handler.php) or save the file from <a title="Error Handler" href="http://blogmyquery.com/downloads/404-handler.zip" target="_blank">here</a></p>
<pre class="brush: css;">
$qs = $_SERVER['QUERY_STRING'];
$pos = strrpos($qs, '://');
$pos = strpos($qs, '/', $pos + 4);
$_SERVER['REQUEST_URI'] = substr($qs, $pos);
$_SERVER['PATH_INFO'] = $_SERVER['REQUEST_URI'];
include('index.php');
?&gt;
</pre>
<p>- Once saved point set custom error page to the above file.</p>
<p>- Go to Options -&gt; Permalinks in your Wordpress admin page, and choose an appropriate structure for your links.</p>
<p><strong><span style="color: #008000;">ASP Version</span></strong> (see <a title="ASP version Custom Error Page" href="http://www.keyboardface.com/IIS-Permalinks/" target="_blank">here</a> for referred article)</p>
<p>- Download files <a title="ASP version Custom Error Page" href="http://blogmyquery.com/downloads/permalinks3.zip" target="_blank">here</a></p>
<p>- Upload htaccess.php and errorpage.asp into the root directory of your blog.</p>
<p>- Set the custom error page of your site to errorpage.asp.</p>
<p>- Change permalinks settings in the format you want. Ready to go.</p>
<p>If you any trouble installing the asp version you can comment <a title="ASP version Custom Error Page" href="http://www.keyboardface.com/archives/2006/05/21/wordpress-permalinks-in-iis-without-the-mod_rewrite/" target="_blank">here</a>.</p>
<p>This article is more useful for people who use shared hosting or who donot have privileges to install any software, in case you have privileges to install softwares please use the below links</p>
<p>Wordpress URL Rewrite by <a title="Wordpress URL Rewrite" href="http://www.binaryfortress.com/wordpress-url-rewrite/" target="_blank">Binary Fortress Software</a> and <a title="Wordpress URL Rewrite" href="http://www.deanlee.cn/wordpress/url-rewriting-for-wordpress-under-iis/" target="_blank">Dean Lee</a></p>
<p>For more info please use this <a title="Word Press Permalink" href="http://codex.wordpress.org/Using_Permalinks" target="_blank">link</a>.
</ul>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blogmyquery.com/index.php/2009/01/permalinksiis6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

