I created a 404.php
page for a website. Also, there is the .htaccess
file ( in the /root ) having the ErrorDocument 404 /404.php
line.
The website is having a multi-language functionality, something like this:
sitename.com/it/article1
sitename.com/en/article1
and so on ... There are numerous articles.
The 404.php
page appears when I'm trying to access something like sitename.com/adsdasaerera
but it doesn't appear when I'm trying to access sitename.com/en/adsdasaerera
, adsdasaerera
not being, obviously, an existing article.
How can I achieve this?