我正在运行一个 mp3 爬虫网站,我想从 URL 中删除 Get/,因为它会导致我的 seo 出现问题,请查看这个 mp3begins.com,
我尝试使用 str_replace 删除“/”但没有成功。
$latestitem = $row['term'];
$latestsearch = trim(str_replace(" ","-",strtolower($latestitem)));
$latest_item = stripslashes($latestitem);
$latest_search = stripslashes($latestsearch);
$latestsearch123 = str_replace(" / "," ",$latest_item);