Looking for some URL rewriting help - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:57:50Z http://stackoverflow.com/feeds/question/541934 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/541934/looking-for-some-url-rewriting-help 0 Looking for some URL rewriting help Aistina 2009-02-12T15:55:15Z 2009-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&amp;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&amp;com=jkl&amp;id=5&amp;page=2</code></p> <p><code>website.com/qwer/yuio/search/keyword/sort/alpha</code> should become <code>website.com/index.php?mod=qwer&amp;com=yuio&amp;search=keyword&amp;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#541973 0 Answer by Gumbo for Looking for some URL rewriting help Gumbo 2009-02-12T15:59:49Z 2009-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&amp;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#542237 3 Answer by bobince for Looking for some URL rewriting help bobince 2009-02-12T16:50:22Z 2009-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>