<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>Search results matching tag 'mod_rewrite'</title><link>http://forums.iis.net/search/SearchResults.aspx?o=DateDescending&amp;tag=mod_rewrite&amp;orTags=0</link><description>Search results matching tag 'mod_rewrite'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Wordpress in subfolder, error 500 with pretty permalink</title><link>http://forums.iis.net/p/1152811/1926190.aspx#1926190</link><pubDate>Wed, 25 Nov 2009 18:43:39 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1926190</guid><dc:creator>David Geisbush</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;I cannot find a web.config file within my /wordpress installation.&amp;nbsp; I installed using the Microsoft web platform installer and the site works as expected except for the ability to use mod rewrite.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I&amp;#39;ve also installed the updated (2.0RC) mod rewrite tool and had hoped to use it, but I cannot figure out how to use it in conjunction with WordPress.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any suggestions?&lt;/p&gt;</description></item><item><title>Elgg web.config for URL rewrite</title><link>http://forums.iis.net/p/1162510/1924108.aspx#1924108</link><pubDate>Tue, 10 Nov 2009 18:20:46 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1924108</guid><dc:creator>narazana</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Did anyone try to translate Elgg .htaccess to web.config ? The following is the fresh install of Elgg .htaccess file. &lt;br /&gt;&lt;/p&gt;&lt;p&gt;################&lt;/p&gt;&lt;p&gt;&amp;nbsp;# Elgg htaccess directives&lt;br /&gt;# Copyright Curverider Ltd 2008-2009&lt;br /&gt;# License http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2&lt;br /&gt;# Link http://elgg.org/&lt;br /&gt;&lt;br /&gt;&amp;lt;IfModule !mod_rewrite.c&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # ugly ugly hack to detect missing mod_rewrite&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # RedirectMatch must be to an absolute destination, so forces 500 error...&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorDocument 500 &amp;quot;Elgg error: Apache does not have mod_rewrite loaded. Please check your Apache setup.&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RedirectMatch 302 .* index.php&lt;br /&gt;&amp;lt;/IfModule&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;Files &amp;quot;htaccess_dist&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; order allow,deny&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; deny from all&lt;br /&gt;&amp;lt;/Files&amp;gt;&lt;br /&gt;&lt;br /&gt;# Don&amp;#39;t listing directory&lt;br /&gt;Options -Indexes&lt;br /&gt;&lt;br /&gt;# Follow symbolic links&lt;br /&gt;Options +FollowSymLinks&lt;br /&gt;&lt;br /&gt;# Default handler&lt;br /&gt;DirectoryIndex index.php&lt;br /&gt;&lt;br /&gt;# Turn on expiry&lt;br /&gt;&amp;lt;IfModule mod_expires.c&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;ExpiresActive On&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;ExpiresDefault &amp;quot;access plus 10 years&amp;quot;&lt;br /&gt;&amp;lt;/IfModule&amp;gt;&lt;br /&gt;&lt;br /&gt;# php 4, apache 1.x&lt;br /&gt;&amp;lt;IfModule mod_php4.c&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorDocument 500 &amp;quot;Elgg error: Elgg does not support PHP 4.&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RedirectMatch 302 .* index.php&lt;br /&gt;&amp;lt;/IfModule&amp;gt;&lt;br /&gt;&lt;br /&gt;# php 4, apache 2&lt;br /&gt;&amp;lt;IfModule sapi_apache2.c&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorDocument 500 &amp;quot;Elgg error: Elgg does not support PHP 4.&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RedirectMatch 302 .* index.php&lt;br /&gt;&amp;lt;/IfModule&amp;gt;&lt;br /&gt;&lt;br /&gt;# php 5, apache 1 and 2&lt;br /&gt;&amp;lt;IfModule mod_php5.c&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;# default memory limit to 64Mb&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;php_value memory_limit 64M&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;# to make sure register global is off&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;php_value register_globals 0&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;# max post size to 8Mb&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;php_value post_max_size 8388608&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;# upload size limit to 5Mb&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;php_value upload_max_filesize 5242880&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;# hide errors, enable only if debug enabled&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;php_value display_errors 0&lt;br /&gt;&amp;lt;/IfModule&amp;gt;&lt;br /&gt;&lt;br /&gt;# Turn on mod_gzip if available&lt;br /&gt;&amp;lt;IfModule mod_gzip.c&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;mod_gzip_on yes&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mod_gzip_dechunk yes&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mod_gzip_keep_workfiles No&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mod_gzip_minimum_file_size 1000&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mod_gzip_maximum_file_size 1000000&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mod_gzip_maximum_inmem_size 1000000&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mod_gzip_item_include mime ^text/.* &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mod_gzip_item_include mime ^application/javascript$&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mod_gzip_item_include mime ^application/x-javascript$&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Exclude old browsers and images since IE has trouble with this&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mod_gzip_item_exclude reqheader &amp;quot;User-Agent: .*Mozilla/4\..*\[&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mod_gzip_item_exclude mime ^image/.*&lt;br /&gt;&amp;lt;/IfModule&amp;gt;&lt;br /&gt;&lt;br /&gt;## Apache2 deflate support if available&lt;br /&gt;##&lt;br /&gt;## Important note: mod_headers is required for correct functioning across proxies.&lt;br /&gt;##&lt;br /&gt;&amp;lt;IfModule mod_deflate.c&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/x-javascript&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;BrowserMatch ^Mozilla/4 gzip-only-text/html&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;BrowserMatch ^Mozilla/4\.[0678] no-gzip&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;BrowserMatch \bMSIE !no-gzip&lt;br /&gt;&lt;br /&gt;&amp;lt;IfModule mod_headers.c&amp;gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Header append Vary User-Agent env=!dont-vary&lt;br /&gt;&amp;lt;/IfModule&amp;gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;# The following is to disable compression for actions. The reason being is that these&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;# may offer direct downloads which (since the initial request comes in as text/html and headers&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;# get changed in the script) get double compressed and become unusable when downloaded by IE.&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;SetEnvIfNoCase Request_URI action\/* no-gzip dont-vary&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;SetEnvIfNoCase Request_URI actions\/* no-gzip dont-vary&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;lt;/IfModule&amp;gt;&lt;br /&gt;&lt;br /&gt;# Configure ETags&lt;br /&gt;&amp;lt;FilesMatch &amp;quot;\.(jpg|jpeg|gif|png|mp3|flv|mov|avi|3pg|html|htm|swf)$&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;FileETag MTime Size&lt;br /&gt;&amp;lt;/FilesMatch&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;IfModule mod_rewrite.c&amp;gt;&lt;br /&gt;&lt;br /&gt;RewriteEngine on&lt;br /&gt;&lt;br /&gt;# If Elgg is in a subdirectory on your site, you might need to add a RewriteBase line&lt;br /&gt;# containing the path from your site root to elgg&amp;#39;s root. e.g. If your site is&lt;br /&gt;# http://example.com/ and Elgg is in http://example.com/sites/elgg/, you might need &lt;br /&gt;#&lt;br /&gt;#RewriteBase /sites/elgg/&lt;br /&gt;#&lt;br /&gt;# here, only without the # in front.&lt;br /&gt;#&lt;br /&gt;# If you&amp;#39;re not running Elgg in a subdirectory on your site, but still getting lots&lt;br /&gt;# of 404 errors beyond the front page, you could instead try:&lt;br /&gt;#&lt;br /&gt;#RewriteBase /&lt;br /&gt;&lt;br /&gt;RewriteRule ^action\/([A-Za-z0-9\_\-\/]+)$ engine/handlers/action_handler.php?action=$1&lt;br /&gt;&lt;br /&gt;RewriteRule ^export\/([A-Za-z]+)\/([0-9]+)$ services/export/handler.php?view=$1&amp;amp;guid=$2&lt;br /&gt;RewriteRule ^export\/([A-Za-z]+)\/([0-9]+)\/$ services/export/handler.php?view=$1&amp;amp;guid=$2&lt;br /&gt;RewriteRule ^export\/([A-Za-z]+)\/([0-9]+)\/([A-Za-z]+)\/([A-Za-z0-9\_]+)\/$ services/export/handler.php?view=$1&amp;amp;guid=$2&amp;amp;type=$3&amp;amp;idname=$4&lt;br /&gt;&lt;br /&gt;RewriteRule ^\_css\/css\.css$ _css/css.php&lt;br /&gt;&lt;br /&gt;RewriteRule ^pg\/([A-Za-z0-9\_\-]+)\/(.*)$ engine/handlers/pagehandler.php?handler=$1&amp;amp;page=$2&lt;br /&gt;RewriteRule ^pg\/([A-Za-z0-9\_\-]+)$ engine/handlers/pagehandler.php?handler=$1&lt;br /&gt;&lt;br /&gt;RewriteRule xml-rpc.php engine/handlers/xml-rpc_handler.php&lt;br /&gt;RewriteRule mt/mt-xmlrpc.cgi engine/handlers/xml-rpc_handler.php&lt;br /&gt;&lt;br /&gt;RewriteRule ^tag/(.+)/?$ engine/handlers/pagehandler.php?handler=search&amp;amp;page=$1&lt;br /&gt;&lt;br /&gt;&amp;lt;/IfModule&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;################ &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank you. &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: rewrite ALL REQUESTS except files?</title><link>http://forums.iis.net/p/1160016/1913473.aspx#1913473</link><pubDate>Thu, 13 Aug 2009 16:29:26 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1913473</guid><dc:creator>DanielVL</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;You can check if a requested URL is, or is not, a file by using &amp;lt;conditions&amp;gt;&amp;lt;add type=&amp;quot;IsFile&amp;quot; negate=&amp;quot;true&amp;quot;/&amp;gt;&amp;lt;/conditions&amp;gt;, but if you are more familiar with Apache syntax, you can use the Import Rules features and type the Apache rules and then we&amp;#39;ll do our best for translating the Apache syntax to IIS URL Rewrite Module. Here is how:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://learn.iis.net/page.aspx/470/importing-apache-modrewrite-rules/"&gt;http://learn.iis.net/page.aspx/470/importing-apache-modrewrite-rules/&lt;/a&gt;&lt;/p&gt;</description></item><item><title>IIS rewrite help!</title><link>http://forums.iis.net/p/1159384/1910811.aspx#1910811</link><pubDate>Mon, 20 Jul 2009 07:01:10 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1910811</guid><dc:creator>mttd</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;&amp;nbsp;hi all, &lt;/p&gt;&lt;p&gt;i have installed mod rewrite and was just look for a bit of help regarding the pattern as I haven&amp;#39;t quite got the hang of RegEx yet!!!&lt;/p&gt;&lt;p&gt;I have a site the requires redirection based on whether there is a file in that dir or not, if there isn&amp;#39;t then it means the file is in the shared dir and thus isn&amp;#39;t specific to the section of the site...here&amp;#39;s an example...&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;URL: /NSW/Register.aspx (this is a shared file used by 3 other states)&lt;/p&gt;&lt;p&gt;Redirect: /Shared/Register.aspx&lt;/p&gt;&lt;p&gt;&amp;nbsp;but it is not limited to only that page, as I say it needs to check if the file exists and redirect if it&amp;#39;s not...is this possible?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;thanks a lot in advance!!&lt;/p&gt;&lt;p&gt;tom &lt;br /&gt;&lt;/p&gt;</description></item><item><title>IIS 7 URL Rewrite Help needed</title><link>http://forums.iis.net/p/1157858/1904631.aspx#1904631</link><pubDate>Sun, 24 May 2009 10:37:47 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1904631</guid><dc:creator>fiaz110</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;I am new to IIS 7. Previously I have done the URL Rewriting using Helicon Tech&amp;#39;s ISAPI Rewrite and IONIC ISAPI Rewrite Filter. The url and its rewrite is written below.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;/tree-service/austin/&lt;/strong&gt; should be written to &lt;strong&gt;/request.asp?city=austin&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;If anybody can provide me the complete sample web.config then I will be extremely greateful to you.&lt;/p&gt;
&lt;p&gt;Thanking in advance,&lt;br /&gt;Fiaz&lt;/p&gt;</description></item><item><title>Deliberate show 503 error page</title><link>http://forums.iis.net/p/1155291/1893502.aspx#1893502</link><pubDate>Mon, 16 Feb 2009 09:45:44 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1893502</guid><dc:creator>JorisNedStars</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;During maintenance I would like to display a 503 error page on every
request without a redirect. I&amp;#39;d like to use this solution because of
the handling by google bots. &lt;br /&gt;
&lt;/p&gt;&lt;p&gt;I do know it is possible with apache by altering the htaccess
file (although this is something I learnt from the internet and I didn&amp;#39;t test it). My question is if this is possible on a windows server 2008
installation with IIS 7. I suspect it can be done with the URL Rewrite
module but I don&amp;#39;t know this for sure and I certainly don&amp;#39;t have a clue
how.&lt;/p&gt;Any help on this subject is very welcome! </description></item><item><title>Multiple rewrite map includes</title><link>http://forums.iis.net/p/1154113/1889010.aspx#1889010</link><pubDate>Mon, 05 Jan 2009 10:38:45 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1889010</guid><dc:creator>DarkMaster</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;Hello.&lt;/p&gt;
&lt;p&gt;Is it possible to have multiple rewrite map includes in web.config? I am asking this as I am going&amp;nbsp;to incorporate automatic rewrite map file update (upon creation of new content in my CMS)&amp;nbsp;and if it were possible, it would greatly easen the process as well as make the navigation/administration trough map files themselves much more clean.&lt;/p&gt;</description></item><item><title>Seeing rewritten URI in status</title><link>http://forums.iis.net/p/1154111/1889007.aspx#1889007</link><pubDate>Mon, 05 Jan 2009 10:27:36 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1889007</guid><dc:creator>DarkMaster</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;Hello!&lt;/p&gt;
&lt;p&gt;Perhaps a dumb/newbie question but still - just how do I get the rewrite module to display already rewritten URI in browser status eg. when you go over the link, in the status bar (bottom of the browser) to display rewritten URL - not just after the URL has been visited already and rewritten after that - I mean I see this all the time on your pages too - I somewhat doubt that you have modified all your .NET code to output manually rewritten links - or did you?&lt;/p&gt;
&lt;p&gt;I know to have this effect in some test scenarios with ISAPI_REWRITE - it did that with using rewrite maps in both directions (rewrite/redirect) and the mouse-over-links got rewritten before I actually clicked one.&lt;/p&gt;
&lt;p&gt;So my question - is this doable with new (and extremely great) URL Rewrite engine for IIS? Or am I to go modify the ASP code to output the actual rewritten links and then just apply the rules to redirect? OR am I missing something very obvious (like I already did in the past *LOL*)?&lt;/p&gt;
&lt;p&gt;Thank you in advance for answer/suggestions!&lt;/p&gt;</description></item><item><title>Known issue with import of mod_rewrite rules that use REQUEST_URI server variable</title><link>http://forums.iis.net/p/1153160/1885140.aspx#1885140</link><pubDate>Mon, 17 Nov 2008 23:55:05 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1885140</guid><dc:creator>ruslany</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;There is a known issue in URL Rewrite Module&amp;nbsp;1.0 release related to the importing of mod_rewrite rules that use rewrite conditions with&amp;nbsp;REQUEST_URI server variables, for example:&lt;/p&gt;
&lt;p&gt;RewriteCond %{REQUEST_URI} /some/url/path.ext&lt;br /&gt;ReweriteRule .* - [L]&lt;/p&gt;
&lt;p&gt;Such rules may not work correctly after being imported to IIS. &lt;/p&gt;
&lt;p&gt;Please upgrade to &lt;a class="" href="http://blogs.iis.net/ruslany/archive/2009/04/20/url-rewrite-module-1-1-for-iis-7.aspx"&gt;URL Rewrite Module v1.1&lt;/a&gt; which has a fix for this issue.&lt;/p&gt;</description></item><item><title>Re: Change code from Apache to Isapi rewrite</title><link>http://forums.iis.net/p/1152569/1883049.aspx#1883049</link><pubDate>Mon, 27 Oct 2008 17:09:37 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1883049</guid><dc:creator>ruslany</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;ISAPI_Rewrite rules syntax is compatible with apache, so these rules should just work. If you use Microsoft URL rewrite module then you can import those rules as described &lt;a class="" href="http://learn.iis.net/page.aspx/470/importing-apache-modrewrite-rules/"&gt;here&lt;/a&gt;.&lt;/p&gt;</description></item></channel></rss>