а там вот галочка появляетца....
.php .html
похожее на чпу как сделать чтобы онон работало(((((
добавил httacces
страницы вида... news.html заработали
страницы вида cat123.html нет
в правке для index.php
if (CONF_FURL) ob_start();
$smarty->display("index.tpl.html");
if (CONF_FURL) {
$FURLs = ob_get_contents();
ob_clean();
$FURLs = preg_replace('/index.php\?productID=([0-9]{1,10})\&/i', 'prod\\1.html?', $FURLs);
$FURLs = preg_replace('/index.php\?productID=([0-9]{1,10})/i', 'prod\\1.html', $FURLs);
$FURLs = preg_replace('/index.php\?categoryID=([0-9]{1,10})\&/i', 'cat\\1.html?', $FURLs);
$FURLs = preg_replace('/index.php\?categoryID=([0-9]{1,10})/i', 'cat\\1.html', $FURLs);
$FURLs = preg_replace('/index.php\?show_aux_page=([0-9]{1,10})/i', 'page\\1.html', $FURLs);
$FURLs = preg_replace('/index.php\?show_price=yes/i', 'pricelist.html', $FURLs);
$FURLs = preg_replace('/index.php\?links_exchange=yes/i', 'links.html', $FURLs);
$FURLs = preg_replace('/index.php\?register=yes/i', 'register.html', $FURLs);
$FURLs = preg_replace('/index.php\?logging=yes/i', 'login.html', $FURLs);
$FURLs = preg_replace('/index.php\?feedback=yes/i', 'contact.html', $FURLs);
$FURLs = preg_replace('/index.php\?news=yes/i', 'news.html', $FURLs);
$FURLs = preg_replace('/index.php\?shopping_cart=yes/i', 'shopping_cart.html', $FURLs);
$FURLs = preg_replace('/index.php\?killuser=yes/i', 'logout.html', $FURLs);
$FURLs = preg_replace('/index.php\?/i', 'index.html?', $FURLs);
$FURLs = preg_replace('/index.php/i', 'index.html', $FURLs);
echo $FURLs;
}
подскажите написание httppacces
RewriteEngine On
RewriteRule ^(.*)_([0-9]{1,10})\.html$ index.php?$1 [L,QSA]
RewriteRule ^(.*)\.html$ index.php?$1 [L,QSA]
нижнее работающее а вот верхнеее... нет