404 Error while trying to use an ErrorDocument

Status
Not open for further replies.

valeriy.kolychev67

New Member
Messages
2
Reaction score
0
Points
0
Good day!
I have:
"Not Found
The requested URL /home/admint0r/public_html/ks/blok/1/1/index.php was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."

But file at the requested URL present.
This script worked at another free hosting.
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
1. What link gives you that error?
2. Looks like it might be a problem with .htaccess or something in your script that tries to rewrite the URL.
yourdomain.x10.mx/ks/blok/1/1/index.php does display for me. Maybe if you post the contents of your .htaccess file(s).
 

valeriy.kolychev67

New Member
Messages
2
Reaction score
0
Points
0
I copied my script from my site at hosting arvixe.ru without modification (no problem there).

http://ta4ku.x10.mx/ks/

.htaccess (problem happend with last RewriteRule):

AddType application/x-httpd-php .html .htm
AddDefaultCharset Windows-1251
<IfModule mod_rewrite.c>
RewriteEngine On
Options +FollowSymlinks -Indexes -MultiViews
RewriteRule ^blok/([0-9]+)_([0-9a-z-]*)$ blok/i_board.php?id=$1 [L]
RewriteRule ^blok/([0-9]+)_([0-9a-z-]*)_([0-9]+)$ blok/i_board.php?id=$1&slide=$3 [L]
RewriteRule ^blok/rss_([0-9x]*)_([0-9]*)$ blok/i_rss.php?id_can=$1&guid=$2 [L]
RewriteRule ^([0-9_]*)\/([0-9a-z_]*)\/([0-9]*)_([0-9a-z-]*)\/([0-9]*)_([0-9a-z-]*)$ blok/1/1/index.php?pn=$1&sort=$2&id_land=$3&id_catalog=$5 [L]
</IfModule>
 
Status
Not open for further replies.
Top