From your manager go to Reports->System Info. The third item down the list is php_info() and beside it you will see a link to view it.
Click on it and look for the field that says "Server API"
If you see a Apache Handler:
Your .htaccess file should work and you may need to check to see if you are allowed to modify your server using .htaccess files. You will need to contact your host for this. If you have a host forum you should search for a solution there.
If you see CGI:
You will not be able to set php directives from the .htaccess file and will need to try using the following to disable register globals:
In your root directory you will need to create a file called php.ini
In this file place the following line:
You then need to add a php.ini file with the same in the Manager and Manager>Includes folders and this should do it.
If that doesn’t do it then you will have to contact your host and request that they turn off register globals for your account. If they can’t then you should find another host. Register Globals On is considered a security hole to the point that since PHP 5.0x it has been set to off in the default distro.