up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question

0% accept rate
feedback

1 Answer

Try the REQUEST_URI variable instead:

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

Your Answer

 
or
required, but never shown

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