Brent,
I think I know what that is. There is already a mode rwerite setting present on your server to process all the urls by adding a trailing slashes to them. That can be set globally or domain wise. Ask your administrator and he should know about it. If not sure, ask him to look for the <virtualhost> entry for this particular domain in httpd.conf and it should show something or perhaps this setting has been done globally for all the domains and it might be active in httpd.conf
Alternately it could also have been done via .htaccess file which could be present in either your home dir or your gallery folder. Ask your admin to check whether it exists or not.
In case you really want the trailing slashes to also effect in the source of your files, then you would have to manually add it to the source code which is pretty simple. I believe simply look for the following type of entries in php files and add the trailing slash.
Quote:
if ( $Globals['spider'] == "yes" )
{
$conurl = construct_ppurl( "{$Globals['maindir']}/showphoto.php/photo/$photo/cpage/$p" );
}
else
{
$conurl = construct_ppurl( "{$Globals['maindir']}/showphoto.php?photo=$photo&cpage=$p"
|
Change it like this:
Quote:
"{$Globals['maindir']}/showphoto.php/photo/$photo/cpage/$p/" ); instead of
"{$Globals['maindir']}/showphoto.php/photo/$photo/cpage/$p" );
|
Don't change the dynamic url syntax which is
Quote:
|
"{$Globals['maindir']}/showphoto.php?photo=$photo&cpage=$p"
|
I am not sure whether the trailing slash added at the end would 100% work. You might try testing it. Backup all your existing php scripts and make those changes and see how they look.