Is there a way to create a URL without the trailing “/”?
Example, I would like to add to the following code to show a profile in a pop up with separate CSS:
<a href="http://{url_title_path=directory/profile}">Show Profile</a>I would like the url produced to be:
<a href="http://www.site.com/index.php/directory/profile/last_first?height=400&width=600">http://www.site.com/index.php/directory/profile/last_first?height=400&width=600"</a>I cannot find a way to remove the “/” before the ?. Thanks for any help.