淘主机 发表于 2012-3-23 15:07:19

zencart伪静态规则之cpanel里的.htacess代码

不必费尽在百度Google找啦,拿去就用!代码如下:


##### NOTE: Replace /shop/ with the relative web path of your catalog in the “Rewrite Base” line below:

Options +FollowSymLinks
RewriteEngine On
RewriteBase /

# From Ultimate SEO URLs
RewriteRule ^(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-m-(+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pi-(+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pr-(+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pri-(+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING}

# For Open Operations Info Manager
RewriteRule ^(.*)-i-(+).html$ index\.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING}

# For dreamscape’s News & Articles Manager
RewriteRule ^news/?$ index\.php?main_page=news&%{QUERY_STRING}
RewriteRule ^news/rss.xml$ index\.php?main_page=news_rss&%{QUERY_STRING}
RewriteRule ^news/archive/?$ index\.php?main_page=news_archive&%{QUERY_STRING}
RewriteRule ^news/({4})-({2})-({2}).html$ index\.php?main_page=news&date=$1-$2-$3&%{QUERY_STRING}
RewriteRule ^news/archive/({4})-({2}).html$ index\.php?main_page=news_archive&date=$1-$2&%{QUERY_STRING}
RewriteRule ^news/(.*)-a-(+)-comments.html$ index\.php?main_page=news_comments&article_id=$2&%{QUERY_STRING}
RewriteRule ^news/(.*)-a-(+).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING}

# All other pages
# Don’t rewrite real files or directories
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*).html$ index\.php?main_page=$1&%{QUERY_STRING}

淘主机 发表于 2012-3-23 15:07:57

:lol
页: [1]
查看完整版本: zencart伪静态规则之cpanel里的.htacess代码