Lucee Tag Reference

Tag <CFLOCATION>

Opens a CFML page or HTML file. For example, you might use cflocation to specify a standard message or response that you use in several applications. Use the addToken attribute to verify client requests.

Body

This tag can't have a body.

Example

<cflocation
	[addtoken=boolean]
	[statuscode=number]
	url=string>
This tag is also supported within cfscript
<cfscript>
	location
		[addtoken=boolean]
		[statuscode=number]
		url=string;
</cfscript>

Attributes

The attributes for this tag are fixed. Except for the following attributes no other attributes are allowed.
Name Type Required Description
addtoken boolean No Yes or No. clientManagement must be enabled, see cfapplication. Yes appends client variable
information to the URL you specify in the url. 
statuscode number No statuscode used for the redirect (301 or 302) 
url string Yes The URL of the HTML file or CFML page to open.