I'm trying to implement this...
http://developer.fusium.com/tools/ses.cfm seems pretty straight forward but I'm just having some trouble getting it to work.
Basically, I downloaded the sesConverter.cfm file to my Includes/Functions directory.
In my included header, I added:
<cfoutput>
<!--- For SES Converter --->
<cfif isDefined("variables.baseH
ref")>
<base href="#variables.baseHref#
">
</cfif>
</cfoutput>
And in my pages I included:
<!--- ses stuff --->
<cfset SESdummyExtension = ".cfm">
<cfset SESrBaseName = "baseHREF">
<cfinclude template="../Includes/Func
tions/sesC
onverter.c
fm">
Then I'm just using regular href links:
<a href="details.cfm?listing_
id=#listin
g_id#" target="_blank">VIEW LISTING</a>
What am I missing here? My ? are not being converted to /.
That makes sense and it's working now... but one issue. It's screwing with my relative paths. For example, the patch to the logo at the top of the page is ../Images/logo.jpg. Since I was always only working 1 directory deep, this worked fine. Now that I am using / in the url, the system things things are many directories deep. Will I have to use absolute paths now or what would be the best way to work this out?
Thanks!