Mod Rewrite problem - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T18:23:20Zhttp://stackoverflow.com/feeds/question/632432http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/632432/mod-rewrite-problem0Mod Rewrite problemmike condiff2009-03-10T21:49:41Z2009-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#6324434Answer by Can Berk Güder for Mod Rewrite problemCan Berk Güder2009-03-10T21:54:14Z2009-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#6324521Answer by kristina for Mod Rewrite problemkristina2009-03-10T21:57:24Z2009-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#6325600Answer by Gumbo for Mod Rewrite problemGumbo2009-03-10T22:36:02Z2009-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>