11
An alternative solution than the one previously mentioned would be to use .htaccess in your subfolder /HTMLSERVICES/. This example will not allow anybody to call html files directly in your subfolder. It will redirect them to the main domain (please replace the example domain with your own domain first).
Quote:
# /HTMLSERVICES/.htaccess file..
Options +FollowSymlinks
rewriteengine on
rewriterule ^(.*)\.htm$ http://yourdomain.com/ [r=301,nc]
Now, after you upload the .htaccess file to the subfolder HTMLSERVICES, you will also need to use this redirect rule in the subfolder /crimemapping/. So also create an upload a .htaccess file in that folder.
ATTENTION: in both cases I assume their are not .htaccess files in these directories yet. If there are, then simply add the rule to the existing .htaccess file. Ask if you need help with that.
You will need to find out if the html pages will still be called by your XOOPS page and if that works, you can test calling one of the pages directly.
If it does not work you can simply remove either the redirect rules or .htaccess files you have added.
Regards,
Martijn