Custom mod rewrite in CakePHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T20:40:30Zhttp://stackoverflow.com/feeds/question/599489http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/599489/custom-mod-rewrite-in-cakephp1Custom mod rewrite in CakePHPmakeee2009-03-01T08:20:26Z2009-03-01T19:44:04Z
<p>Hello, I've rewritten my web app using CakePHP, but now I need to have my old formatted urls redirect to my new url format. I can't seem to add my own custom mod rewrite rule. I've added it above the main cakephp rewrite rule, but I'm getting an infinite redirect loop. I just want <a href="http://mysite.com/index.php?action=showstream&nickname=user" rel="nofollow">http://mysite.com/index.php?action=showstream&nickname=user</a> to redirect to <a href="http://mysite.com/user" rel="nofollow">http://mysite.com/user</a> before the cakephp rewrite happens.</p>
<p>EDIT: Ok, so now when the condition is met it's redirecting but it's appending the original query string to the end. I'm assuming that's due to the QSA flag in CakePHP rewrite rules, but I was under the impression the "L" in my rule would stop that from executing...</p>
<pre><code>RewriteEngine On
RewriteCond %{QUERY_STRING} ^action\=showstream&nickname\=(.*)$
RewriteRule ^.*$ http://mysite.com/%1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</code></pre>
<p></p>
http://stackoverflow.com/questions/599489/custom-mod-rewrite-in-cakephp/599506#5995061Answer by Chad Birch for Custom mod rewrite in CakePHPChad Birch2009-03-01T08:41:26Z2009-03-01T08:41:26Z<p>When you do a capture inside the RewriteCond line instead of the RewriteRule, you have to reference the capture with %N instead of $N. That is, your RewriteRule line should be:</p>
<pre><code>RewriteRule ^index.php$ /%1 [R=301,L]
</code></pre>
http://stackoverflow.com/questions/599489/custom-mod-rewrite-in-cakephp/599526#5995261Answer by Gumbo for Custom mod rewrite in CakePHPGumbo2009-03-01T09:07:38Z2009-03-01T19:44:04Z<p>Try to test the request line (<code>THE_REQUEST</code>) to see what URI originally has been requested:</p>
<pre><code>RewriteCond %{THE_REQUEST} ^[A-Z]+\ /index\.php
RewriteCond %{QUERY_STRING} ^action=showstream&nickname=([^&]*)$
RewriteRule ^index\.php$ /%1? [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php?url=$0 [QSA,L]
</code></pre>
<p>But maybe it would be easier to do this with PHP.</p>