doudizhi947129 2015-11-05 05:34
浏览 31
已采纳

使用.htaccess从url中删除关键字

How to remove "specific" keyword from url...keyword may come on 2,3rd or 4th position after ".com"

For example:

I want to remove keyword "mobile" from below urls

http://www.mysites.com:8083/robert/projects/google/mobile/india/en/ http://www.mysites.com:8083/projects/google/mobile/india/en/ http://www.mysites.com/mobile/india/en/

  • 写回答

1条回答 默认 最新

  • doulai2025 2015-11-05 06:12
    关注

    Try something like this in your .htaccess file

    RewriteEngine On
    RewriteRule ^(.*)/mobile/(.*)$ $1/$2 [R=301,L]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?