My URLs looks like this: www.example.com/?content=somefile.php.
The pattern is: always www.example.com/?content=, than a file like somefile.php and sometimes some more get parameters.
Is there a way to use www.example.com/somefile.php instead of www.example.com/?content=somefile.php?
I already tried the following:
RewriteEngine On RewriteRule ^([^/]*)$ /?content=$1 [L] but I'm getting the following error message:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [no address given] 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.
Apache/2.2.14 (Ubuntu) Server at www.example.com Port 80
Can anybody help me?