fengtalk 发布的文章

Smarty 是一个 PHP 模板引擎。更确切地说,它可以帮助开发者更好地分离程序逻辑和页面显示。这样的好处是,制作网站模板相对来说,会方便得多。

本文列出一些从网络上搜集的使用 Smarty 的 CMS。排名不分先后。

- 阅读剩余部分 -

Apache

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^article\/(.+)\.html$ article.php?name=$1 [L]
RewriteRule ^product\/(.+)\.html$ product.php?name=$1 [L]
RewriteRule ^category\/([^/_]+)[/]?$ category.php?name=$1 [L]
RewriteRule ^category\/([^/]+)_([0-9]+)[/]?$ category.php?name=$1&p=$2 [L]
RewriteRule ^catalog\/([^/]+)[/]?$ catalog.php?type=$1 [L]
RewriteRule ^comment.html$ comment.php [L]
RewriteRule ^sitemap.xml$ sitemap.php [L]
</IfModule>

- 阅读剩余部分 -