Thatchai
Jun 18, 2023

--

wordpress — config url in subdirectory

wp-config.php

//
$_SERVER['HTTPS'] = 'on';
$_SERVER['HTTP_HOST'] = $_SERVER['HTTP_X_FORWARDED_HOST'];
$_SERVER['REQUEST_URI'] = str_replace('/aaa/', '/aaa', $_SERVER['REQUEST_URI']);

--

--