<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: .htaccess Add Trailing Slash to URL</title>
	<atom:link href="http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/feed/" rel="self" type="application/rss+xml" />
	<link>http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/</link>
	<description>Worst. Domain Name. Ever.</description>
	<pubDate>Fri, 21 Nov 2008 03:08:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Dan</title>
		<link>http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/#comment-29089</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Thu, 17 Jul 2008 15:26:01 +0000</pubDate>
		<guid isPermaLink="false">http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/#comment-29089</guid>
		<description>You might try

&lt;code&gt;RewriteEngine On
RewriteBase /
RewriteRule ^abc/?$ landing_page.php [QSA,L]&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>You might try</p>
<p><code>RewriteEngine On<br />
RewriteBase /<br />
RewriteRule ^abc/?$ landing_page.php [QSA,L]</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sraboni</title>
		<link>http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/#comment-29080</link>
		<dc:creator>Sraboni</dc:creator>
		<pubDate>Thu, 17 Jul 2008 13:18:29 +0000</pubDate>
		<guid isPermaLink="false">http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/#comment-29080</guid>
		<description>Thanks Dan. I have done this,
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(/[a-zA-Z0-9]{1,5})\.html$
RewriteRule ^(.*)$ http://www.somesite.com/landing_page.php [L]

Its showing http://www.somesite.com/landing_page.php. its fine. But I want to show the url as
http://www.somesite.com/abc</description>
		<content:encoded><![CDATA[<p>Thanks Dan. I have done this,<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteCond %{REQUEST_URI} !(/[a-zA-Z0-9]{1,5})\.html$<br />
RewriteRule ^(.*)$ <a href="http://www.somesite.com/landing_page.php" rel="nofollow">http://www.somesite.com/landing_page.php</a> [L]</p>
<p>Its showing <a href="http://www.somesite.com/landing_page.php" rel="nofollow">http://www.somesite.com/landing_page.php</a>. its fine. But I want to show the url as<br />
<a href="http://www.somesite.com/abc" rel="nofollow">http://www.somesite.com/abc</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/#comment-28796</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Fri, 11 Jul 2008 02:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/#comment-28796</guid>
		<description>Sraboni,
This post is just about adding a trailing slash to URLs, but to point you in the right direction, you might try &lt;strong&gt;&lt;a href="http://www.webweaver.nu/html-tips/web-redirection.shtml" rel="nofollow"&gt;here&lt;/a&gt;&lt;/strong&gt;, &lt;a href="http://httpd.apache.org/docs/1.3/mod/mod_alias.html#redirectmatch" rel="nofollow"&gt;here&lt;/a&gt;, or otherwise try &lt;a href="http://www.google.com/search?q=url+redirect" rel="nofollow"&gt;Google&lt;/a&gt;...</description>
		<content:encoded><![CDATA[<p>Sraboni,<br />
This post is just about adding a trailing slash to URLs, but to point you in the right direction, you might try <strong><a href="http://www.webweaver.nu/html-tips/web-redirection.shtml" rel="nofollow" onclick="javascript:pageTracker._trackPageview ('/outbound/www.webweaver.nu');">here</a></strong>, <a href="http://httpd.apache.org/docs/1.3/mod/mod_alias.html#redirectmatch" rel="nofollow" onclick="javascript:pageTracker._trackPageview ('/outbound/httpd.apache.org');">here</a>, or otherwise try <a href="http://www.google.com/search?q=url+redirect" rel="nofollow" onclick="javascript:pageTracker._trackPageview ('/outbound/www.google.com');">Google</a>&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sraboni</title>
		<link>http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/#comment-28754</link>
		<dc:creator>Sraboni</dc:creator>
		<pubDate>Thu, 10 Jul 2008 13:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/#comment-28754</guid>
		<description>how do I redirect
http://www.somesite.com/elle to
http://www.somesite.com/example.php</description>
		<content:encoded><![CDATA[<p>how do I redirect<br />
<a href="http://www.somesite.com/elle" rel="nofollow">http://www.somesite.com/elle</a> to<br />
<a href="http://www.somesite.com/example.php" rel="nofollow">http://www.somesite.com/example.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/#comment-25094</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 26 May 2008 16:08:13 +0000</pubDate>
		<guid isPermaLink="false">http://soulpass.com/2008/01/11/htaccess-add-trailing-slash-to-url/#comment-25094</guid>
		<description>Sweet! Good to know it worked!</description>
		<content:encoded><![CDATA[<p>Sweet! Good to know it worked!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.792 seconds -->
