Quote Originally Posted by conor View Post
Hi,

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

Hi, Conor, can it possible to add some code in the .htaccess file to get the same? if so, what about the code should be added in the .htaccess file, thanks!