zblog2.0放于二级目录静态化httpd.ini的设置方法
这里的httpd.ini必须放于根目录,而不是二级目录下面
httpd.ini的设置代码:
RewriteRule ^(.*?)default_([0-9]+).html $1catalog\.asp\?page=$2
RewriteRule ^(.*?)category-([0-9]+)\.html $1catalog\.asp\?cate=$2
RewriteRule ^(.*?)category-([0-9]+)_([0-9]+)\.html $1catalog\.asp\?cate=$2&page=$3
RewriteRule ^(.*?)author-([0-9]+)\.html $1catalog\.asp\?auth=$2
RewriteRule ^(.*?)author-([0-9]+)_([0-9]+)\.html $2catalog\.asp\?auth=$2&page=$3
RewriteRule ^(.*?)tags-(.*)\.html $1catalog\.asp\?tags=$2
RewriteRule ^(.*?)tags-(.*)_([0-9]+)\.html $1catalog\.asp\?tags=$2&page=$3
RewriteRule ^(.*?)([0-9\-]+)\.html $1catalog\.asp\?date=$2
RewriteRule ^(.*?)([0-9\-]+)_([0-9]+)\.html $2catalog\.asp\?date=$2&page=$3
直接复制,粘贴到httpd.ini里面即可。
后台需要开启静态化,这个设置是默认的设置,如果是自行设置的,请根据实际情况修改即可。
如果你服务器是apache的话应该可以使用 .htaccess
在你的网站目录下放置一个 .htaccess 文件(注意前边的点儿,及没有扩展名,如果用记事本编辑一定要注意保存时类型选择所有文件),里边内容为:
<IfModule mod_rewrite.c>RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)