Hmm, Im confused, honestly I need it to show my 404.html.eex instead of text, I have created 2 html .eex before, but I can’t use these.
for example:
<!-- /web/templates/error/404.html.eex -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="<%= static_path(@conn, "/css/app.css") %>">
</head>
<body>
<h1>404 - Page Not Found</h1>
<p>This isn't the page you were looking for.</p>
</body>
</html>
that is my web/templates/error/404.html.eex
, but It isn’t shown when I enter broken url. it shows me a text but I want that.
Updated:
now I know, I have to delete all of my codes in My ErrorView except the following line:
def template_not_found(template, _assigns) do
Phoenix.Controller.status_message_from_template(template)
end
I have 2 questions
q1: when I have 401 or 403 status; What is happens? can I custom them ?
q2: I have a FallbackController please see my code:
defmodule TrangellHtmlSiteWeb.BlogFallbackController do
use Phoenix.Controller
def call(conn, {:ok, %HTTPoison.Response{status_code: 404, body: _body}}) do
conn
|> put_flash(:info, "متاسفانه صفحه ای که به دنبال آن هستید وجود ندارد.")
|> render(TrangellHtmlSiteWeb.ErrorView , :"404")
end
end
I render render(TrangellHtmlSiteWeb.ErrorView , :"404")
and it shows me an error in centre of my template, but in the main page if I try like: local.com/404
it just shows me full 404 error page, independently!!
Please see:
pic 1:
pic2:
how can I redirect it to 404full page with the session which I need?