if (!function_exists('russ')) {
function russ($d, $format = 'j %MONTH% Y', $offset = 0)
{
$montharr = array('января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря');
$dayarr = array('понедельник', 'вторник', 'среда', 'четверг', 'пятница', 'суббота', 'воскресенье');
$d += 3600 * $offset;
$sarr = array('/%MONTH%/i', '/%DAYWEEK%/i');
$rarr = array( $montharr[date("m", $d) - 1], $dayarr[date("N", $d) - 1] );
$format = preg_replace($sarr, $rarr, $format);
return date($format, $d);
}
}
echo russ( time(), '%DAYWEEK%, j %MONTH% Y, G:i' );
$tpl->load_template ( 'main.tpl' );
$allcount = dle_cache('news_count');
if(empty($allcount)){
$allcount = $db->super_query("SELECT count(*) as c FROM ".PREFIX."_post WHERE approve");
$allcount = $allcount['c'];
create_cache('news_count',$allcount);
}
$tpl->set ( '{allcount}', $allcount );
wget -o /dev/null --delete-after "site.ru/file.php"
php -f /var/www/user/data/www/site.ru/file.php > /dev/null
*/2
Находим. RewriteEngine on
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^.]+)\.html\ HTTP
RewriteRule ^([^\.]+)\.p?html?$ http://ТВОЙСАЙТ.com/$1 [R=301,L]
RewriteCond %{REQUEST_URI} !(\.[^./]+)$
RewriteCond %{REQUEST_fileNAME} !-d
RewriteCond %{REQUEST_fileNAME} !-f
RewriteRule (.*) /$1.html [L]