show/hide this revision's text 3 Formatting

I have this in my .htaccess file

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) /index.cfm?urlparam=/$1 [L,QSA]
</IfModule>

urlparam only ever returns the first two parameters after the domain

i.e if i type

www.blahblah.com/competitions/display/competition01/

and then write the contents of urlparam i only ever get /competitions/display/

Can anyone mke any suggestions mod rewrite is a bit of a black art to me.

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

mod rewrite apache

I have this in my .htaccess file

RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteRule (.*) /index.cfm?urlparam=/$1 [L,QSA]

urlparam only ever returns the first two parameters after the domain

i.e if i type

www.blahblah.com/competitions/display/competition01/

and then write the contents of urlparam i only ever get /competitions/display/

Can anyone mke any suggestions mod rewrite is a bit of a black art to me.