2015-11-05 53 views
0

如何删除URL“特定”关键词取下URL关键字...关键字可能“.COM”使用的.htaccess

例如后来吧2,3rd或第四位要删除关键字“手机”从下面的网址

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/

+0

所以你想要“http://www.mysites.com:8083/robert/projects/google/india/en/”代替“http://www.mysites.com:8083/robert/projects/” google/mobile/india/en /“? –

+0

是的阿米特..我想那样 –

+0

昨天你不问这个问题吗? – hjpotter92

回答

0

尝试这样的事情在你的.htaccess文件

RewriteEngine On 
RewriteRule ^(.*)/mobile/(.*)$ $1/$2 [R=301,L]