There is somehow a error with my .htaccess file:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^\.]+)$ $1.php [NC]
RewriteCond %{REQUEST_FILENAME} >""
RewriteRule ^([^\.]+)$ profile.php?user=$1 [L]</pre>
yet I do not know what is wrong!
I am trying to make a permalink connector. So if a user enter "localhost/postin'/profiles/username_here" it will redirect them to a URL similar to this "localhost/postin'/profiles/profile.php?user=username_here"
The error it is producing is:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at [email protected] to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
RewriteCond %{REQUEST_FILENAME} >""and also why do you have a pre tag at the end?