我必须转换此网址并删除部分路径:
http://myhost.com/cw/es/extrapath --> http://myhost.com/es/extrapath
我试过了:
RewriteRule ^/(ew|ww|es|cw)/(es|en)/^(.*)$ http://myhost.com/es/$2/$3
而且:
RewriteRule ^/([a-z]??)/(es|en)/^(.*)$ http://myhost.com/es/$2/$3
但它不起作用。这些.htaccess行中有什么问题?