mod_status is a apache module that lets you see the status of apache. After its switched on, it can be accessed at server.com/server-status, however I cant access it because of the mod_rewrite in the .htaccess file. below is the .htaccess file.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} othersite.com$ [NC]
RewriteRule ^(.*)$ http://server.com/$1 [R=301]
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
when I disable above, http://server.com/server-status works. This is probably a common issue with mod_rewrite, but i'm not sure how to fix it.