July 28, 2005 at 11:14 pm
#669411
Inactive
Redirect in ColdFusion
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.new-url.com">
The above won’t work for me because the problem I am having is:
while index.cfm is a real page,
index.cfm?var_file=cripcdir.htm – isn’t a real page.
Basically the whole site is index.cfm… the variables tell the coldfusion page what data to load – kind of like a php include file… so the file: index.cfm?var_file=cripcdir.htm actually represents different content than index.cfm
am i making since here?