Bagaimana membuat statement pada semua site url atau domain menjadi "/" saja? #280
Answered
by
taufik-nurrohman
bungfrangki
asked this question in
Q&A
-
Misalnya kondisi site url atau domain saya adalah seperti berikut, dan di sebelahnya adalah hasil yang ingin ditampilkan: bisakah hal tersebut dikondisikan pada file index.php? |
Beta Was this translation helpful? Give feedback.
Answered by
taufik-nurrohman
Jan 2, 2024
Replies: 1 comment 3 replies
-
Kalau nggak salah itu sudah ditangani oleh mecha-cms/x.minify. Tapi kalau tujuannya cuma untuk menghapus domain bisa sih, kira-kira begini: Hook::set('content', function ($content) {
if (!$content || false === strpos($content, '://')) {
return $content;
}
$host = $_SERVER['HTTP_HOST'];
$content = strtr($content, [
'http://' . $host . '/' => '/',
'http://' . $host . '?' => '?',
'http://' . $host . '#' => '#',
'http://' . $host . '"' => '/"',
"http://" . $host . "'" => "/'",
]);
// dst...
// $content = strtr(...);
return $content;
}); |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
bungfrangki
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Kalau nggak salah itu sudah ditangani oleh mecha-cms/x.minify. Tapi kalau tujuannya cuma untuk menghapus domain bisa sih, kira-kira begini: