Forum Moderators: phranque
Most FTP clients do not show 'hidden' files (like the .htaccess) by default, so you may need to set them to show in your preferences. If you have to manually enter the setting to show hidden files, I believe -AL the unix command.
Hope this helps.
Justin
You might be able to fix it with a simple rewrite:
RewriteEngine on
RewriteRule ^test\.php.+ /test.php [L]
The above says if the requested URL starts with test.php, followed by one or more characters, serve the information from test.php. There may need to be some adjusting, but it should get you close or give you an idea... I have not had time to test. (The server I usually test on recognizes the file, and not the full URL as the path.)
Don't know all the technical reasons why, maybe someone can give both of us some ideas about the technicalities.
Hope this helps.
Justin