На Денвере происходит тоже самое , когда доска лежит в подпапке. При изменении в файле .htaccess (на денвере) все работает , на сайте нет.
Разобралась! Нужны правила для nginx
Что ж вы сразу про nginx не сказали?
Тогда это вам (ну, в смысле для nginx-а) :
Код:
rewrite /code.gif /core/antirobot.php;
rewrite /flymail-([0-9]+).png /core/flymail.php?id_mess=$1;
rewrite ^/login.html$ /index.php?op=account&act=login;
rewrite ^/logout.html$ /index.php?op=account&act=logout;
rewrite ^/register.html$ /index.php?op=account&act=register;
rewrite ^/newpass.html$ /index.php?op=account&act=newpass;
rewrite ^/accept,([0-9]+),([-a-zA-Z0-9_=]+)$ /index.php?op=account&act=newpass&accept=yes&usid=$1&hash=$2;
rewrite ^/accept_rules.html$ /index.php?op=cpanel&act=accept_rules;
rewrite ^/profile.html$ /index.php?op=cpanel&act=profile;
rewrite ^/cpanel.html$ /index.php?op=cpanel;
rewrite ^/cpanel-p([0-9]+).html$ /index.php?op=cpanel&page=$1;
rewrite ^/cpanel-([0-9]+)-edit.html$ /index.php?op=cpanel&group=edit&id_mess=$1;
rewrite ^/cpanel-([0-9]+)-del.html$ /index.php?op=cpanel&group=del&id_mess=$1;
rewrite ^/cpanel-([0-9]+)-prolongation.html$ /index.php?op=cpanel&group=prolongation&id_mess=$1;
rewrite ^/cpanel-del.html$ /index.php?op=cpanel&group=del;
rewrite ^/goto-([0-9]+).html$ /core/redirect.php?id=$1;
rewrite ^/ru.html$ /core/changelang.php?l=ru;
rewrite ^/en.html$ /core/changelang.php?l=en;
rewrite ^/city.html$ /core/changecity.php;
rewrite ^/newlist.html$ /index.php?op=newlist;
rewrite ^/newlist-p([0-9]+).html$ /index.php?op=newlist&page=$1;
rewrite ^/c([0-9]+).html$ /index.php?id_cat=$1;
rewrite ^/c([0-9]+)-p([0-9]+).html$ /index.php?id_cat=$1&page=$2;
rewrite ^/c([0-9]+)-([0-9]+).html$ /index.php?id_cat=$1&id_mess=$2;
rewrite ^/new.html$ /index.php?op=add;
rewrite ^/([0-9]+)-new.html$ /index.php?op=add&cat=$1;
rewrite ^/print([0-9]+)-([0-9]+).html$ /index.php?op=print&id_cat=$1&id_mess=$2;
rewrite ^/vip([0-9]+).html$ /index.php?op=vip&id_mess=$1;
rewrite ^/note.html$ /index.php?op=note;
rewrite ^/note-p([0-9]+).html$ /index.php?op=note&page=$1;
rewrite ^/noteprint.html$ /index.php?op=noteprint;
rewrite ^/informers.html$ /index.php?op=informers;
rewrite ^/rss.html$ /index.php?op=rss_export;
rewrite ^/search.html$ /index.php?op=search;
rewrite ^/contacts.html$ /index.php?op=contacts;
rewrite ^/news.html$ /index.php?op=news;
rewrite ^/news-p([0-9]+).html$ /index.php?op=news&page=$1;
rewrite ^/n([0-9]+)-([-a-zA-Z0-9_]+).html$ /index.php?op=news&id=$1&title=$2;
rewrite ^/addnews.html$ /index.php?op=addnews;
rewrite ^/p([0-9]+).html$ /index.php?op=content&id=$1;
rewrite ^/success.html$ /a/pay.php?action=success;
rewrite ^/fail.html$ /a/pay.php?action=fail;
rewrite ^/pages/([0-9]+)/?$ /p$1.html;
rewrite ^/advertisement/nesting/([0-9]+)/kind/([0-9]+)/?$ /c$1-$2.html;
rewrite ^/rss/?$ /rss.html;
rewrite ^/contacts/?$ /contacts.html;
rewrite ^/search/?$ /search.html;