I have an application I'm building in ColdFusion, whereby all requests will run through the index.cfm file.

I have a .htaccess file that rewrites the URL. So, for example...if I write:

http://domain.com/hello/goodbye/howdy

The actual request always uses index.cfm like so:

http://domain.com/index.cfm/hello/goodbye/howdy

This all works great, but now I'm stuck with how I can grab everything that is in the URL. Not one of the CGI variables don't seem to output the "/hello/goodbye/howdy" part of the URL.

I have tried cgi.path_info and cgi.query_string etc to no avail...they're just blank.

I need to grab everything that comes after the domain name, and do stuff in CF with it. I know it's possible in JS, but I really need this on the server.

Dumping the CGI scope shows me nothing useful in this regard:

<cfdump var="#cgi#" />

Here's my htaccess file for reference:

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /
RewriteRule ^index\.cfm$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.cfm [L]

RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} !^([^\.]+)\.domain\.com
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

</IfModule>

Thanks.

EDIT:

As an additional note, I've also tried the underlying Java methods like so:

<cfdump var="#getPageContext().getRequest().getContextPath()#" />
<cfdump var="#getPageContext().getRequest().getRequestURL()#" />
<cfdump var="#getPageContext().getRequest().getQueryString()#" />

To no success :(

link|improve this question

56% accept rate
That's strange - QUERY_STRING is usually the variable that contains exactly that info. (At least in a normal Apache install.) – Pekka Feb 15 at 11:13
Yes, it is odd isn't it. I'm really not clued up enough on this stuff to really understand it. If I do a "normal" URL like www.mydomain.com/?/hello/how/can/i/help then it seems to work. Obviously the "?" is the trigger here. But my .htaccess file should negate the required use of that. – Michael Giovanni Pumo Feb 15 at 11:30
aggh, as Jura says below, it's REQUEST_URI of course, not QUERY_STRING. QUERY_STRING contains only the part after the ? by design. Sorry – Pekka Feb 15 at 11:33
feedback

3 Answers

up vote 4 down vote accepted
<IfModule mod_rewrite.c>

RewriteEngine On
RewriteBase /

RewriteRule ^index\.cfm$ - [L]

RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} !^([^\.]+)\.domain\.com
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

#Change exists here:
RewriteRule ^(.*)$ /index.cfm?actualuri=$1 [L,QSA]

</IfModule>

try cgi.query_string now. It should have actualuri=/the/path/sent.
Also, put the rewrite rules in the same order as put above.

link|improve this answer
Hi, thanks for the input. I tried this and it just seems to break the request. I get a standard 404 at that point. Any further ideas? Thanks. – Michael Giovanni Pumo Feb 15 at 11:19
@MichaelGiovanniPumo My bad. Check the update in answer – ThinkingMonkey Feb 15 at 11:21
Hi again. That seems to get it working again but the query string now always returns "0". For example, it says "actualuri=0" regardless of what is typed in the URL. – Michael Giovanni Pumo Feb 15 at 11:27
@MichaelGiovanniPumo Try the update. Had done an oversight. – ThinkingMonkey Feb 15 at 11:30
EDIT! Actually...it seems to only return the LAST character of the string. So if I write www.domain.com/hmm it will return "m". Ideally need the whole path, regardless of how long. – Michael Giovanni Pumo Feb 15 at 11:33
show 3 more comments
feedback

Check #CGI.REQUEST_URI# - it's undocumented but works

link|improve this answer
Doesn't seem to work in this case, but thanks for the input. – Michael Giovanni Pumo Feb 15 at 11:39
Are you sure? According to the docs, it does work: httpd.apache.org/docs/2.0/mod/mod_rewrite.html Technically it IS documented. Remember that the CGI scope in CF is driven partially by the web server. Since different web servers send different values, the cfdump of the CGI scope will not always display everything you can use. Heck, you can even output cgi.ray (try it). – Raymond Camden Feb 15 at 11:43
Hi Ray, I feel you are possibly correct in this sense. Another realization that CGI variables are perhaps best not to be relied upon. However, I sorted this with ThinkingMonkey's .htaccess modification. Works like a charm. PS Ray...big fan of your blog / work! – Michael Giovanni Pumo Feb 15 at 11:56
feedback

I think the simplest means is to actually look at the CGI.PATH_INFO field.

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.