您好我的多语言网站有问题。 我有laravel 5.5,我安装了Laravel-Translatable。
当他想要打开主页面时,会显示以下地址: 项目/ EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN /烯/ EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN / EN
我现在不知道,为什么会有地址。
我的中间件/ Language.php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Foundation\Application;
use Illuminate\Http\Request;
use Illuminate\Routing\Redirector;
class Language
{
public function handle(Request $request, Closure $next)
{
// Check if the first segment matches a language code
if (!array_key_exists($request->segment(1), config('translatable.locales')) ) {
// Store segments in array
$segments = $request->segments();
// Set the default language code as the first segment
$segments = array_prepend($segments, config('app.fallback_locale'));
// Redirect to the correct url
return redirect()->to(implode('/', $segments));
}
return $next($request);
}
}
我的web.php(路由)
Route::get('/', 'PagesController@getIndex');
和我的PagesController.php
class PagesController extends Controller
{
public function getIndex() {
$this->data['menu_items'] = MenuItem::getTree();
return view('pages.index', $this->data);
}
}