Website URL
https://www.gr8brik.rf.gd/user/[ANY USER PROFILE]
https://www.gr8brik.rf.gd/[ANY PAGE THAT DOES NOT EXIST]
https://www.gr8brik.rf.gd/home
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 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.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Other Information
Htaccess:
php_value display_errors Off
php_value mbstring.http_input auto
php_value date.timezone America/New_York
RewriteBase /
RewriteEngine On
# Force HTTPS
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Redirect non-www to www
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Redirect all requests to PHP files, except for specific extensions
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !\.(png|jpg|gif|jpeg|css|js)$
RewriteRule ^(.*)$ $1.php [L]
# RewriteRule \.(html|htm)$ $1.php [L]
# Redirect errors to error page
ErrorDocument 403 /error.php?error=403
ErrorDocument 404 /error.php?error=404
ErrorDocument 500 /error.php?error=500
Other rewrite rules
# RewriteRule ^user/([a-zA-Z0-9_]+)$ /profile.php?user=$1 [L]
# RewriteRule ^home/ /index.php [L]
# ErrorDocument 503 "<b>GR8BRIK is having issues right now. Check back soon.</b>
# Redirect 503 /
# Redirect /home /index.php
Redirect /user /profile.php?user=$1