Zend语言默认以这种方式路由URL:
101
如何将路线从“en_US”更改为“en”和“fr_FR”改为“fr”,例如:
/en_US/mypage
/fr_FR/mypage
答案 0 :(得分:0)
您可以通过将其剪切为字符串来简单地处理该网址。如果它是 。这是简单的suedocode:
my_url = "http://whatever/en_US/mypage";
first_half = "http://whatever/en";
second_half = "/mypage";
my_url = first_half + second_half;