Очень плохо знаком с PHP, но у меня есть этот код
$url = 'http://example.com/en-us/about-us';
if ($url contains 'en-us') {
replace 'en';
}
Кто-нибудь знает, как я мог бы заставить это работать.
В основном, если URL содержит en-us
замените URL en
Спасибо
$url = 'http://example.com/en-us/about-us';
if (strpos($url,'en-us') !== false) { //first we check if the url contains the string 'en-us'
$url = str_replace('en-us', 'en', $url); //if yes, we simply replace it with en
}
Я надеюсь, что это может помочь вам
Других решений пока нет …