httpd.ini的用法

httpd.ini的用法,第1张

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>


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/425617.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-05-26
下一篇2023-05-26

发表评论

登录后才能评论

评论列表(0条)

    保存