用日历和分页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]

相关文章

可以认为OpenFeign是Feign的增强版,不同的是OpenFeign支持S...
为进一步规范小程序交易生态、提升用户购物体验、满足用户在...
云原生之使用Docker部署Dashdot服务器仪表盘
本文主要描述TensorFlow之回归模型的基本原理
1.漏洞描述Apache Druid 是一个集时间序列数据库、数据仓库和...
内部类(当作类中的一个普通成员变量,只不过此成员变量是cl...