Tüm trafiğe bir 404 hatası gönderin

1 Cevap php

Sitenize bir 404 sayfa tüm trafik göndermek için en iyi yolu nedir? Şu anda sitede çalışıyorum ve sadece 404 için tüm istekleri için bunu istiyorum. Ben htaccess dosyaları ile oynamak denedim ama bir bu gibi çalışan almakla çok başarılı olmamıştır. Ayrıca, ben hala yoluyla almak için belirli bir klasöre trafik istiyorum.

1 Cevap

Soru belirtildiği gibi en kolay yolu bu klasöre içine tüm içeriğini taşımak olacaktır.

However, reading between the lines it sounds like you want to view the site in the root folder, and block anyone else from doing the same. It seems to me what you want to do is look at the Apache manual's section on Authentication and Authorization http://httpd.apache.org/docs/2.0/howto/auth.html

Apache yapılandırma Bir Yer veya Dizin bölümünde izleyen, ya da bir. Htaccess dosyası gibi bir şey çalışması gerekir. Özel bir konumda kullanıcılara göstermek istediğiniz sayfayı koyabilirsiniz

      #The page you want to show denied users.
      ErrorDocument 403 /path/to/403.html
      #The page you want to show when pages aren't found (404)
      ErrorDocument 404 /path/to/404.html

      #For Password Protection
      #Use the htpasswd utility to generate .htpasswd
      AuthType Basic
      AuthName "My Secret Stuff"
      AuthUserFile /path/to/my/passwords/.htpasswd
      Require valid-user

      #For IP protection
      Order allow,deny
      Allow from 1.2.3.4 #Your IP Here

      #If you want to use a combination of password and IP protection
      #This directive works if they have a valid IP OR a valid user/pass
      Satisfy any