Hi,

Quote Originally Posted by ed20 View Post
Hi, Ceon, if I want to add a slash "/" at the end of the uri for any page on my site when AUTOGEN, how to?

just like below:
/about-us
/about-us/

tks!
It doesn't do that. You'd have to modify the autogeneration function to have it add it.

The file this is in is

admin\includes\functions\extra_functions\ceon_uri_mapping.php

A simple way would be to change line 948 to

PHP Code:
return $uri . (substr($uri, -1) != '/' '/' ''); 
You'll have to make this change each time you upgrade the module.

All the best..

Conor
ceon