如何从url ...关键字中删除“特定”关键字可能会在“.com”之后的第2,3或第4位置出现
例如:
我想从以下网址中删除关键字“mobile”
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 :(得分:0)
在.htaccess文件中尝试类似的内容
RewriteEngine On
RewriteRule ^(.*)/mobile/(.*)$ $1/$2 [R=301,L]