budulay - 12 Сентябрь 2011 04:03 P.M.
napisalov - 11 Сентябрь 2011 09:02 A.M.
Где копать?
а что в .htaccess?
#—LG .htaccess Generator Start—
# .htaccess generated by LG .htaccess Generator v1.0.0
# http://leevigraham.com/cms-customisation/expressionengine/addon/lg-htaccess-generator/
AddDefaultCharset utf8
# secure .htaccess file
<Files .htaccess>
order allow,deny
deny from all
</Files>
<Files path.php>
order allow,deny
deny from all
</Files>
# Dont list files in index pages
IndexIgnore *
# EE 404 page for missing pages
ErrorDocument 404 /index.php?/global/404
# Simple 404 for missing files
<FilesMatch “(\.jpe?g|gif|png|bmp)$”>
ErrorDocument 404 “File Not Found”
</FilesMatch>
RewriteEngine On
RewriteBase /
# remove the www
RewriteCond %{HTTP_HOST} ^(www\.$) [NC]
RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Add a trailing slash to paths without an extension
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule ^(.*)$ $1/ [L,R=301]
# Remove index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
#—LG .htaccess Generator End—