English 中文(简体)
Trouble with Superior htaccess redirect
原标题:Trouble with advanced .htaccess redirect

我把一个习俗成像的博客推向言语,必须设置一个处理所有博客职位的调子。

我需要从中转调:

/oldblogdirectory/Old_Blog_Posts_Looked_Like_ This.htm

:

/newblogdirectory/new-blog-posts-look- similar-this/

reg reg?

最佳回答

贡布办法当然是这样做的途径。 我编制了两个测试目录:

oldblogdir/archives/blog_posts_look_like_this.htm
newblogdir/archives/blog-posts-look-like-this

下述《rewrite 规则》成功地转呈了方向。 只是略微修改了Gumbo的建议:

RewriteEngine on
RewriteBase /

RewriteRule ^(oldblogdir/archives/[^_]*)_(.*) $1-$2 [N]
RewriteRule ^oldblogdir/archives/(.*?).htm$ newblogdir/archives/$1 [R,NC,L]

请注意,<代码>[N] 造成检索档案重新评价,直至《登记》不再匹配。 因此,你应该把它放在档案的首位。

问题回答




相关问题
Using SimplePie with CodeIgniter and XAMPP

I am using CodeIgniter 1.7.2 with XAMPP 1.7.2 on a Windows computer. I am trying to make use of SimplePie. I followed all the instructions I could find: a copy of simplepie.inc is in my applications/...

Multiple Sites with common files

I have developed over 50 sites that all use the exact same files other than CSS and IMAGES, I currently duplicate the files each time I create a new site and upload different css and images. What ...

http server validation

I finish a litle http server, writing from scratch. I would like to be sure that my imlementation is conforme to the HTTP specifications. W3C give us tools for HTML/XML conformance, but i see nothing ...

热门标签