请教:关于php+apache服务环境下运用Rewrite配置缩短或者减少网站的访问地址的问题
http://localhost/aa/bb/cc/dd/20150205/2229.html缩短为http://localhost/aa/20150205/2229.h...
http://localhost/aa/bb/cc/dd/20150205/2229.html 缩短为
http://localhost/aa/20150205/2229.html
比如上面的这个网站要缩短访问地址,把bb/cc/dd/这一部分路径省掉,
下面的这个Rewrite重定向规则错在哪里呢?请各位大神指点一下如何修改呢?
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/aa/
RewriteRule /aa/(.*) http://localhost/aa/$1 [R=permanent,L] 展开
http://localhost/aa/20150205/2229.html
比如上面的这个网站要缩短访问地址,把bb/cc/dd/这一部分路径省掉,
下面的这个Rewrite重定向规则错在哪里呢?请各位大神指点一下如何修改呢?
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/aa/
RewriteRule /aa/(.*) http://localhost/aa/$1 [R=permanent,L] 展开
1个回答
展开全部
RewriteRule ^aaa/bb/cc/dd/([0-9]+)/([0-9]+).html http://localhost/aa/$1/$2.html [R=301,L]
试试这个
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询