Вот такая проблема???
Server error!
The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script.
If you think this is a server error, please contact the webmaster.
Когда прописываю в .htaccess вот так:
RewriteCond %{REQUEST_FILENAME} /forum(\/?)$
RewriteRule (.*) /forums.html [R=301,L]
RewriteCond %{REQUEST_FILENAME} /forum/index.php
RewriteRule (.*) /forums.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /forum/ucp.php
RewriteRule (.*) /forums/user.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /forum/viewforum.php
RewriteRule (.*) /forums/forum.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /forum/viewtopic.php
RewriteRule (.*) /forums/topic.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /forum/memberlist.php
RewriteRule (.*) /forums/members.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /forum/report.php
RewriteRule (.*) /forums/report.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /forum/posting.php RewriteRule (.*) /forums/post.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /forum/mcp.php
RewriteRule (.*) /forums/moderator.html?%{QUERY_STRING} [R=301,L]
Что не так???