Custom mod rewrite in CakePHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:40:30Z http://stackoverflow.com/feeds/question/599489 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/599489/custom-mod-rewrite-in-cakephp 1 Custom mod rewrite in CakePHP makeee 2009-03-01T08:20:26Z 2009-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&amp;nickname=user" rel="nofollow">http://mysite.com/index.php?action=showstream&amp;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&amp;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#599506 1 Answer by Chad Birch for Custom mod rewrite in CakePHP Chad Birch 2009-03-01T08:41:26Z 2009-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#599526 1 Answer by Gumbo for Custom mod rewrite in CakePHP Gumbo 2009-03-01T09:07:38Z 2009-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&amp;nickname=([^&amp;]*)$ 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>