<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Url Routing with PHP &#8211; Part One</title>
	<atom:link href="http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/</link>
	<description></description>
	<lastBuildDate>Thu, 08 Jul 2010 03:46:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Quotes aka Bash.org/QDB clone &#124; x2 // activeStyle</title>
		<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/comment-page-1/#comment-77413</link>
		<dc:creator>Quotes aka Bash.org/QDB clone &#124; x2 // activeStyle</dc:creator>
		<pubDate>Tue, 02 Mar 2010 01:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/#comment-77413</guid>
		<description>[...] on the internet about URL routing i found Axial Routing, i liked it and decided to base my code on that tutorial. I abused the singletons a little  and [...]</description>
		<content:encoded><![CDATA[<p>[...] on the internet about URL routing i found Axial Routing, i liked it and decided to base my code on that tutorial. I abused the singletons a little  and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sethhhh</title>
		<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/comment-page-1/#comment-73771</link>
		<dc:creator>sethhhh</dc:creator>
		<pubDate>Sun, 07 Feb 2010 22:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/#comment-73771</guid>
		<description>Hello,

I have a site made with symfony 1.1 and i whant to change it with
another site made with 1.2.
my proplem is that i whant to change some URL...
For example i have a url thath looks like this on my old site:
http://www.sejur-extern.ro/Egipt/Sharm-El-Sheikh

On my new site it will be:
http://www.sejur-extern.ro/turism-extern/Egipt/Sharm-El-Sheikh.html

How can i get the old url if google sends someone on it...and change
it in my new one?

Thank you!</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I have a site made with symfony 1.1 and i whant to change it with<br />
another site made with 1.2.<br />
my proplem is that i whant to change some URL&#8230;<br />
For example i have a url thath looks like this on my old site:<br />
<a href="http://www.sejur-extern.ro/Egipt/Sharm-El-Sheikh" rel="nofollow">http://www.sejur-extern.ro/Egipt/Sharm-El-Sheikh</a></p>
<p>On my new site it will be:<br />
<a href="http://www.sejur-extern.ro/turism-extern/Egipt/Sharm-El-Sheikh.html" rel="nofollow">http://www.sejur-extern.ro/turism-extern/Egipt/Sharm-El-Sheikh.html</a></p>
<p>How can i get the old url if google sends someone on it&#8230;and change<br />
it in my new one?</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Fedak</title>
		<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/comment-page-1/#comment-52389</link>
		<dc:creator>Matthew Fedak</dc:creator>
		<pubDate>Thu, 22 Oct 2009 13:00:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/#comment-52389</guid>
		<description>Thanks for this Doug, its a simple post and suppose people have there own ways in which they get round the problem, but it explains the concept to wanabe php developers really well. Quick point Eric (last commentor) point is good but can i would advise newbies to avoid.</description>
		<content:encoded><![CDATA[<p>Thanks for this Doug, its a simple post and suppose people have there own ways in which they get round the problem, but it explains the concept to wanabe php developers really well. Quick point Eric (last commentor) point is good but can i would advise newbies to avoid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik</title>
		<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/comment-page-1/#comment-48048</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Sun, 13 Sep 2009 21:26:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/#comment-48048</guid>
		<description>Hi. Thanks for this Tutorial. I enjoyed it.

Just a minor note on all these attempts to get command and parameters by comparing paths - that&#039;s not necessary if you store the request in a $_GET parameter like this:
&lt;samp&gt;RewriteRule (.*) index.php?r=$ [L,QSA]&lt;/samp&gt;
This way you can drop all the string comparing and extract all parameters with one &lt;samp&gt;explode(&#039;/&#039;,$_GET[&#039;r&#039;]);&lt;/samp&gt;</description>
		<content:encoded><![CDATA[<p>Hi. Thanks for this Tutorial. I enjoyed it.</p>
<p>Just a minor note on all these attempts to get command and parameters by comparing paths &#8211; that's not necessary if you store the request in a $_GET parameter like this:<br />
&lt;samp&gt;RewriteRule (.*) index.php?r=$ [L,QSA]&lt;/samp&gt;<br />
This way you can drop all the string comparing and extract all parameters with one &lt;samp&gt;explode('/',$_GET['r']);&lt;/samp&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandrar</title>
		<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/comment-page-1/#comment-47642</link>
		<dc:creator>sandrar</dc:creator>
		<pubDate>Thu, 10 Sep 2009 22:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/#comment-47642</guid>
		<description>Hi! I was surfing and found your blog post... nice! I love your blog.  :) Cheers! Sandra. R.</description>
		<content:encoded><![CDATA[<p>Hi! I was surfing and found your blog post&#8230; nice! I love your blog.  <img src='http://www.phpaddiction.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cheers! Sandra. R.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neuromancer</title>
		<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/comment-page-1/#comment-46214</link>
		<dc:creator>Neuromancer</dc:creator>
		<pubDate>Sat, 22 Aug 2009 08:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/#comment-46214</guid>
		<description>It doesn&#039;t work.

$requestURI is empty.</description>
		<content:encoded><![CDATA[<p>It doesn't work.</p>
<p>$requestURI is empty.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jove Sharma</title>
		<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/comment-page-1/#comment-42946</link>
		<dc:creator>Jove Sharma</dc:creator>
		<pubDate>Wed, 01 Jul 2009 17:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/#comment-42946</guid>
		<description>Hi there,

do someone have any code for htccess or php so that i can redirect my own made extension file to the respective php file, but the browser shows the extension by me.

like if i type a url link 
http://www.yourdomain.com/index.jove

but internally it will display the content of http://www.yourdomain.com/index.php

while showing the 
http://www.yourdomain.com/index.jove in the browser window.</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>do someone have any code for htccess or php so that i can redirect my own made extension file to the respective php file, but the browser shows the extension by me.</p>
<p>like if i type a url link<br />
<a href="http://www.yourdomain.com/index.jove" rel="nofollow">http://www.yourdomain.com/index.jove</a></p>
<p>but internally it will display the content of <a href="http://www.yourdomain.com/index.php" rel="nofollow">http://www.yourdomain.com/index.php</a></p>
<p>while showing the<br />
<a href="http://www.yourdomain.com/index.jove" rel="nofollow">http://www.yourdomain.com/index.jove</a> in the browser window.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Umer</title>
		<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/comment-page-1/#comment-40863</link>
		<dc:creator>Umer</dc:creator>
		<pubDate>Wed, 03 Jun 2009 12:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/#comment-40863</guid>
		<description>Hi,
I am new user.
I want to redirect
http://myurl.com/profile/username
to
http://myurl.com/username

I have tried this through .htaccess but CSS and connection breaks.

Is there any other way to do this.

Thanx in Advance.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am new user.<br />
I want to redirect<br />
<a href="http://myurl.com/profile/username" rel="nofollow">http://myurl.com/profile/username</a><br />
to<br />
<a href="http://myurl.com/username" rel="nofollow">http://myurl.com/username</a></p>
<p>I have tried this through .htaccess but CSS and connection breaks.</p>
<p>Is there any other way to do this.</p>
<p>Thanx in Advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: boris</title>
		<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/comment-page-1/#comment-37515</link>
		<dc:creator>boris</dc:creator>
		<pubDate>Wed, 29 Apr 2009 10:12:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/#comment-37515</guid>
		<description>@WB I think you shoudl use tirm(&#039;/&#039;,$url)...</description>
		<content:encoded><![CDATA[<p>@WB I think you shoudl use tirm('/',$url)&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WB</title>
		<link>http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/comment-page-1/#comment-35840</link>
		<dc:creator>WB</dc:creator>
		<pubDate>Thu, 16 Apr 2009 15:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/#comment-35840</guid>
		<description>I setup the patter and it works great except for on gliche... I was wondering if anyone else has and issue with image references when an extra slash is added to the URI.  i.e.  If the url is...

www.mysite.com/command/action - images are referenced fine as...
www.mysite.com/command/images/my.gif

however if www.mysite.com/command/action/ - broken reference as...
www.mysite.com/command/action/images/my.gif

Anyone have any thoughts on where to look?</description>
		<content:encoded><![CDATA[<p>I setup the patter and it works great except for on gliche&#8230; I was wondering if anyone else has and issue with image references when an extra slash is added to the URI.  i.e.  If the url is&#8230;</p>
<p><a href="http://www.mysite.com/command/action" rel="nofollow">http://www.mysite.com/command/action</a> &#8211; images are referenced fine as&#8230;<br />
<a href="http://www.mysite.com/command/images/my.gif" rel="nofollow">http://www.mysite.com/command/images/my.gif</a></p>
<p>however if <a href="http://www.mysite.com/command/action/" rel="nofollow">http://www.mysite.com/command/action/</a> &#8211; broken reference as&#8230;<br />
<a href="http://www.mysite.com/command/action/images/my.gif" rel="nofollow">http://www.mysite.com/command/action/images/my.gif</a></p>
<p>Anyone have any thoughts on where to look?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
