Mod Rewrite problem - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T18:23:20Z http://stackoverflow.com/feeds/question/632432 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/632432/mod-rewrite-problem 0 Mod Rewrite problem mike condiff 2009-03-10T21:49:41Z 2009-03-10T22:36:25Z <p>I have a problem that I cannot wrap my head around.</p> <p>I'm using Apache and PHP</p> <p>I need to get:</p> <p><a href="http://localhost.com/cat_ap.php?nid=5964" rel="nofollow">http://localhost.com/cat_ap.php?nid=5964</a></p> <p>from</p> <p><a href="http://localhost.com/cat_ap~nid~5964.htm" rel="nofollow">http://localhost.com/cat_ap~nid~5964.htm</a></p> <p>How do I go about changing that around? I have done more simple mod rewrites but this is slightly more complicated. Can anyone give me a leg up or point me in the right direction</p> http://stackoverflow.com/questions/632432/mod-rewrite-problem/632443#632443 4 Answer by Can Berk Güder for Mod Rewrite problem Can Berk Güder 2009-03-10T21:54:14Z 2009-03-10T22:25:41Z <pre><code>RewriteRule ^/cat_ap~nid~(.*)\.htm$ /cat_ap?nid=$1 [R] </code></pre> <p>The <code>[R]</code> at the end is optional. If you omit it, Apache won't redirect your users (it will still serve the correct page).</p> <p>If the <code>nid</code> part is also a variable, you can try this:</p> <pre><code>RewriteRule ^/cat_ap~([^~]+)~(.*)\.htm$ /cat_ap?$1=$2 [R] </code></pre> <p><strong>EDIT:</strong> As Ben Blank said in his comment, you might want to restrict the set of valid URLs. For example, you might want to make sure a nid exists, and that it's numerical:</p> <pre><code>RewriteRule ^/cat_ap~nid~([0-9]+)\.htm$ /cat_ap?nid=$1 </code></pre> <p>or if the nid part is a variable, that it only consists of alphabetical characters:</p> <pre><code>RewriteRule ^/cat_ap~([A-Za-z]+)~([0-9]+)\.htm$ /cat_ap?$1=$2 </code></pre> http://stackoverflow.com/questions/632432/mod-rewrite-problem/632452#632452 1 Answer by kristina for Mod Rewrite problem kristina 2009-03-10T21:57:24Z 2009-03-10T21:57:24Z <p>Assuming the variable parts here are the "nid" and the 5964, you can do:</p> <pre><code>RewriteRule ^/cat_ap~(.+)~(.+).htm$ ^/cat_ap?$1=$2 </code></pre> <p>The first "(.+)" matches "nid" and the second matches "5964".</p> http://stackoverflow.com/questions/632432/mod-rewrite-problem/632560#632560 0 Answer by Gumbo for Mod Rewrite problem Gumbo 2009-03-10T22:36:02Z 2009-03-10T22:36:02Z <p>If you want everything arbitrary:</p> <pre><code>RewriteRule ^/(\w+)~(\w+)~(\w+)\.htm$ $1?$2=$3 [L] </code></pre> <p>Where <code>\w</code> is equal to <code>[A-Za-z0-9_]</code>. And if you want to use this rule in a .htaccess file, remove the leading <code>/</code> from the pattern.</p>