简体   繁体   中英

Please help me redirect old url to new url using htaccess

I have some old urls from our old site as follows:

http://www.example.com/archives/2006/08/test.html

I want all my urls as shown above, starting with www.example.com/archives/* to point to www.example.com/gossip

Can anyone please give me the right htaccess code to do the same? Thanks a lot!

Kip

This will do what I think you're asking for:

RewriteEngine On
RewriteRule ^/archives/.*$ /gossip [R,L]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM