Allowing only certain files to view by .htaccess

前端 未结 2 1683
北恋
北恋 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:27

    This .htaccess-file will only allow users to open index.php. Attempts to access any other files will result in a 403-error.

    Order deny,allow
    Deny from all
    
    
        Allow from all
    
    

    If you also want to use authentication for some of the files, you may simply add the content from your current file at the end of my example.

提交回复
热议问题