hab mittels dem Tutorial von BugBuster: https://github.com/BugBuster1701/contao-routing-app. Das Problem lösen können allerdings ist die Lösung etwas unschön, da ich mittels curl die Daten hole. Gibt es hierfür noch ne andere Lösung? Habe folgenden Quellcode geschrieben:
PHP-Code:
public function profileAction($name)
{
$name = str_replace(".html", "", $name);
$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL,'http://contao.local/?show='.$name);
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_USERAGENT, 'contao');
$content = curl_exec($curl_handle);
curl_close($curl_handle);
$objResponse = new Response($content);
$objResponse->headers->set('Content-Type', 'text/html; charset=UTF-8');
return $objResponse;
}