|
02.01.2006, 19:11
немного не так:
в .htaccess
Код:
#Pages
RewriteRule ^page-cat-([0-9]*).html$ gate.html?name=Pages&go=cat&cid=$1
RewriteRule ^page-showcat-([0-9]*).html$ gate.html?name=Pages&go=showcat&cid=$1
RewriteRule ^page-([0-9]*)-([0-9]*).html$ gate.html?name=Pages&go=page&pid=$1&page=$2
RewriteRule ^page-([0-9]*).html$ gate.html?name=Pages&go=page&pid=$1
RewriteRule ^pages.html gate.html?name=Pages
в head.php
PHP код:
"'(?<!/)gate.html\?name=Pages&go=cat&cid=([0-9]*)'", "'(?<!/)gate.html\?name=Pages&go=showcat&cid=([0-9]*)'", "'(?<!/)gate.html\?name=Pages&go=page&pid=([0-9]*)&page=([0-9]*)'", "'(?<!/)gate.html\?name=Pages&go=page&pid=([0-9]*)'", "'(?<!/)gate.html\?name=Pages'",
и
PHP код:
"page-cat-\\1.html", "page-showcat-\\1.html", "page-\\1-\\2.html", "page-\\1.html", "pages.html",
Откройте modules/Pages/index.php
найдите все & и замените на &
|
|