mod rewrite apache - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T01:29:32Z http://stackoverflow.com/feeds/question/520744 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/520744/mod-rewrite-apache 0 mod rewrite apache colin 2009-02-06T15:36:59Z 2009-02-06T16:12:53Z <p>I have this in my .htaccess file</p> <pre><code>&lt;IfModule mod_rewrite.c&gt; RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteRule (.*) /index.cfm?urlparam=/$1 [L,QSA] &lt;/IfModule&gt; </code></pre> <p>urlparam only ever returns the first two parameters after the domain</p> <p>i.e if i type </p> <p>www.blahblah.com/competitions/display/competition01/ </p> <p>and then write the contents of urlparam i only ever get /competitions/display/</p> <p>Can anyone mke any suggestions mod rewrite is a bit of a black art to me.</p> http://stackoverflow.com/questions/520744/mod-rewrite-apache/520918#520918 1 Answer by Gumbo for mod rewrite apache Gumbo 2009-02-06T16:12:53Z 2009-02-06T16:12:53Z <p>Try the <code>REQUEST_URI</code> variable instead:</p> <pre><code>RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ /index.cfm?urlparam=%{REQUEST_URI} [L,QSA] </code></pre>