我想像这样为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,在子目录下不工作
如何阻止访问者直接访问我网站上的目录?
您可以使用:
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]