Allowing only certain files to view by .htaccess

前端 未结 2 1684
北恋
北恋 2021-02-07 17:50

i have almost 20 pages on server, but i want only a file named abc.php, which users can watch. i want if user forcefully open the other files like //example.com/some.php .htacce

2条回答
  •  春和景丽
    2021-02-07 18:06

    Its safest to move the files you don't want the users to access to a directory which is not in the root directory of the web server.

    Like if the root directory of my site is this:

    /var/www/html/my_web_site/public/index.php
    

    I can put the non-public files in another directory like this:

    /var/www/html/my_web_site/config.php
    /var/www/html/my_web_site/auth.php
    /var/www/html/my_web_site/db.php
    

    And include the files like this in index.php:

    include("../config.php");
    include("../auth.php");
    include("../db.php");
    

    Whit this, you don't have to risk to accidentally delete or forget to copy the .htaccess file.

提交回复
热议问题