hello, i get the next message when i look at my domain: The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, xxxxxxx and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request. Code (markup): when i delete the .htacces, the site is working, but the urls aint working anymore the text in my .htacces is: php_flag register_globals on #php_flag apc.enabled off Options +FollowSymLinks RewriteEngine On RewriteRule ^go/(.*)/(.*)/$ show.php?id=$1 RewriteRule ^do/(.*)/(.*)/$ show.php?b=y&id=$1 RewriteRule ^do/(.*)/$ show.php?b=y&id=$1 RewriteRule ^go/(.*)/$ show.php?id=$1 Code (markup): can somebody please help me, thnx,
Take out parts of the htaccess until you find out which line(s) trigger the error. Try replacing all instances of (.*) with (.+?). Also, is PHP running as a CGI binary? If so, php_flag cannot be used in .htaccess and you will have to consider other options, such as local php.ini files if your host allows them.