So this problem started a year ago but I figured it was not related to apache or ISPCONFIG. I finally decided to resolve it today, and it's apache or something.
Here's what the deal is. My translation application for Areyouliberal.com ends up giving an "500 error - Internal Server Error!" error.
Error log shows this:
Code:
[Fri Apr 17 13:02:44 2009] [alert] [client 72.198.79.154] /var/www/web6/web/wp-content/plugins/translator/.htaccess: Options not al$
[Fri Apr 17 13:02:44 2009] [warn] RewriteOptions: MaxRedirects option has been removed in favor of the global LimitInternalRecursio$
[Fri Apr 17 13:02:44 2009] [alert] [client 72.198.79.154] /var/www/web6/web/wp-content/plugins/translator/.htaccess: Options not al$
[Fri Apr 17 13:02:44 2009] [warn] RewriteOptions: MaxRedirects option has been removed in favor of the global LimitInternalRecursio$
[Fri Apr 17 13:02:44 2009] [alert] [client 72.198.79.154] /var/www/web6/web/wp-content/plugins/translator/.htaccess: Options not al$
[Fri Apr 17 13:02:44 2009] [warn] RewriteOptions: MaxRedirects option has been removed in favor of the global LimitInternalRecursio$
[Fri Apr 17 13:02:44 2009] [alert] [client 72.198.79.154] /var/www/web6/web/wp-content/plugins/translator/.htaccess: Options not al$
[Fri Apr 17 13:02:45 2009] [warn] RewriteOptions: MaxRedirects option has been removed in favor of the global LimitInternalRecursio$
The .htaccess for the website documentroot has the following:
Code:
#Options +FollowSymlinks
RewriteOptions MaxRedirects=50
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Vhosts.conf in the httpd/conf/vhosts/ directory has the following for Areyouliberal.com:
Code:
ErrorDocument 405 /error/methodNotAllowed.html
ErrorDocument 500 /error/internalServerError.html
ErrorDocument 503 /error/overloaded.html
AliasMatch ^/~([^/]+)(/(.*))? /var/www/web6/user/$1/web/$3
AliasMatch ^/users/([^/]+)(/(.*))? /var/www/web6/user/$1/web/$3
RewriteEngine on
RewriteCond %{HTTP_HOST} ^areyouracist\.com [NC]
RewriteRule ^/(.*) http://areyouliberal.com/$1 [L,R]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
</IfModule>
</VirtualHost>
How can I get Rewrite to work appropriately? According to httpd.conf there is a LOADMODULE for modrewrite.so so that should not be an issue.
I have no Apache Directives added to the website through ISPCONFIG's interface.
Recent comments
1 day 19 hours ago
2 days 4 hours ago
2 days 7 hours ago
2 days 8 hours ago
2 days 10 hours ago
2 days 11 hours ago
2 days 13 hours ago
2 days 14 hours ago
3 days 6 hours ago
3 days 7 hours ago