500 Internal Server Error error

Status
Not open for further replies.

jainmand

New Member
Messages
1
Reaction score
0
Points
1
Hi,

This is my site, the homepage works just fine:
http://jainmandir.x10host.com/

but when I go to the 'Events' sub page: http://jainmandir.x10host.com/events-main/

I get this error:

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at corey@x10hosting.com 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.



Could anyone please help, I checked everything and it looks fine, I don't get the same error on my DEV machine at all.


Thanks,
Jose
 

lylex10h

Active Member
Messages
982
Reaction score
71
Points
28
My guess is something in your .htaccess . Try replacing it with this:
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
From https://codex.wordpress.org/htaccess#Basic_WP
 
Status
Not open for further replies.
Top