Looking for some URL rewriting help - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T14:57:50Zhttp://stackoverflow.com/feeds/question/541934http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/541934/looking-for-some-url-rewriting-help0Looking for some URL rewriting helpAistina2009-02-12T15:55:15Z2009-02-12T17:10:28Z
<p>Hi everyone,</p>
<p>My question is a simple one, but I can't seem to find the answer. I'm currently working on some URL rewriting for a website, but I have encountered a problem. Currently the most basic rule I have goes something like this:</p>
<pre><code>RewriteRule ^([a-zA-Z]+)/(([a-zA-Z]+)/?$ index.php?mod=$1&com$2
</code></pre>
<p>This works in most cases, and I have some special cases for where this doesn't apply, however one of the pages needs to pass a lot of information through the URL, and I want to automatically rewrite this. Some examples:</p>
<p><code>website.com/asdf/jkl/id/5/page/2</code> should become <code>website.com/index.php?mod=asdf&com=jkl&id=5&page=2</code></p>
<p><code>website.com/qwer/yuio/search/keyword/sort/alpha</code> should become <code>website.com/index.php?mod=qwer&com=yuio&search=keyword&sort=alpha</code></p>
<p>Is this possible? I could really use some help here... Thanks! :)</p>
http://stackoverflow.com/questions/541934/looking-for-some-url-rewriting-help/541973#5419730Answer by Gumbo for Looking for some URL rewriting helpGumbo2009-02-12T15:59:49Z2009-02-12T17:10:28Z<p>You could use a recursive rule:</p>
<pre><code>RewriteRule ^([a-zA-Z]+)/([a-zA-Z]+)/?$ index.php?mod=$1&com$2 [L,QSA]
RewriteRule ^([^/]+/[^/]+)/([^/]+)/([^/]+)/?(.*) $1/$4?$2=$3 [QSA]
</code></pre>
<p>But it sure would be easier to parse the request path with PHP.</p>
http://stackoverflow.com/questions/541934/looking-for-some-url-rewriting-help/542237#5422373Answer by bobince for Looking for some URL rewriting helpbobince2009-02-12T16:50:22Z2009-02-12T16:50:22Z<p>Depending on what language/framework you're using, it may be simpler to put the rewriting/dispatch in the script rather than attempt to do everything in mod_rewrite.</p>
<p>For example, if you were using PHP, given the URL:</p>
<pre><code>http://www.example.com/asdf.php/jkl/id/5/page/2
</code></pre>
<p>a script at asf.php could read the PATH_INFO variable, split it on slashes, and write the values into the expected place in $_REQUEST.</p>
<p>Then all you need is one simple rewrite rule to elide the ‘.php’.</p>