微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

用日历和分页htaccess获得价值

我想像这样为htaccess添加分页。 所以我把例子。 底部有我的htaccess代码。 所以如何解决这个问题。 帮我看这个post。 谢谢。

example.com/calendar/2014/page/2 < – example.com/calendar/load.PHP?year=2014&page=2

example.com/calendar/2014/4/page/2 < – example.com/calendar/load.PHP?year=2014&month=4&page=2

example.com/calendar/2014/4/27/page/2 < – example.com/calendar/load.PHP?year=2014&month=4&date=27&page=2

如果URL不好,.htaccess会做一些事情

“RewriteEngine不允许在这里”使用XAMPP .htaccess错误

如何在允许embedded的情况下使htaccess直接访问图像

仅在访问特定域时才使用HTTP身份validation

如何根据查询stringredirecturl?

这里是我的htaccess代码

/calendar/.htaccess

Options +FollowSymLinks RewriteEngine On RewriteBase /calendar/ RewriteCond %{HTTP_HOST} !^www. [NC] RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,NE,L] RewriteRule ^([0-9]+)/?$ load.PHP?year=$1 [L,QSA] RewriteRule ^([0-9]+)/([0-9]+)/?$ load.PHP?year=$1&month=$2 [L,QSA] RewriteRule ^([0-9]+)/([0-9]+)/([0-9]+)/?$ load.PHP?year=$1&month=$2&date=$3 [L,QSA]

Wamp,SlimPHP和Htacess

url百分比编码不起作用

在根目录下安装CodeIgniter,在子目录下不工作

如何阻止访问者直接访问我网站上的目录?

为什么我的PHP标签转换为html评论

您可以使用:

Options +FollowSymLinks RewriteEngine On RewriteBase /calendar/ RewriteCond %{HTTP_HOST} !^www. [NC] RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,QSA] RewriteRule ^([0-9]+)/(page)/([0-9]+)/?$ load.PHP?year=$1&p=$3 [L,QSA] RewriteRule ^([0-9]+)/([0-9]+)/(page)/([0-9]+)/?$ load.PHP?year=$1&month=$2&p=$4 [L,QSA] RewriteRule ^([0-9]+)/([0-9]+)/([0-9]+)/(page)/([0-9]+)/?$ load.PHP?year=$1&month=$2&date=$3&p=$5 [L,QSA]

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐