RewriteRule 跳转
http://test.cjl.com/bbs/thread-5-1-1.html跳转到http://test.cjl.com/node/105也就是让5+100。Rew...
http://test.cjl.com/bbs/thread-5-1-1.html 跳转到 http://test.cjl.com/node/105 也就是让5+100。
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ http://test.cjl.com/node/($1+100) [L]我试了这样,跳转结果是 http://test.cjl.com/node/5+100 。这不是我要的结果。 哪位知道怎么在.htaccess里进行运算吗? 展开
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ http://test.cjl.com/node/($1+100) [L]我试了这样,跳转结果是 http://test.cjl.com/node/5+100 。这不是我要的结果。 哪位知道怎么在.htaccess里进行运算吗? 展开
1个回答
2013-07-16
展开全部
在httpd.conf里设置,假设你的根目录是/var/wwwroot
<Directory /var/wwwroot/huiyuan>
RewriteEngine on
RewriteBase /huiyuan
RewriteRule ^/t_(.*)\.html$ test.php?id=$1 [L]
</Directory>
在目录下/var/wwwroot/huiyuan的.htaccess里写
RewriteEngine on
RewriteBase /huiyuan
RewriteRule ^t_(.*)\.html$ test.php?id=$1 [L]
后边的[R]应该写成[L],R的意思是让浏览器跳转,地址栏的地址就变成test.php?id=2了
请参考apache参考手册
<Directory /var/wwwroot/huiyuan>
RewriteEngine on
RewriteBase /huiyuan
RewriteRule ^/t_(.*)\.html$ test.php?id=$1 [L]
</Directory>
在目录下/var/wwwroot/huiyuan的.htaccess里写
RewriteEngine on
RewriteBase /huiyuan
RewriteRule ^t_(.*)\.html$ test.php?id=$1 [L]
后边的[R]应该写成[L],R的意思是让浏览器跳转,地址栏的地址就变成test.php?id=2了
请参考apache参考手册
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询