Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have web hosting with HostGator, and I have some rewritemod stuff on my .htaccess in 3 different folders. Every so often ONLY while I am changing code around and keep uploading from Dreamweaver, for about 10-20 seconds I will receive a 500 internal server error, after the 20 seconds, its like nothing happened. The only way I have debugged this is to try to remove the rewrite mods I have on the root folder, but I was not able to recreate the issue, but I'm not sure at all that it was the problem, I have the same rewrites being made on 2 other folders. I'm at a loss, I've never had this issue before.

Here is what my .htaccess looks like.

RewriteEngine On
RewriteBase /ncms/admin
RewriteRule ^([a-zA-Z0-9-]+)$ index.php?p=$1 [L]
RewriteRule ^([a-zA-Z0-9-]+)/$ index.php?p=$1 [L]

This looks the same, the only difference is that for two other folders the RewriteBase is /ncms and /

share|improve this question
1  
check your error logs, there should be something next to the "500" responses – Jon Lin Nov 26 '12 at 20:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.