vote up 0 vote down star

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.

flag

1 Answer

vote up 1 vote down

Try the REQUEST_URI variable instead:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ /index.cfm?urlparam=%{REQUEST_URI} [L,QSA]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.