php - Allow access from specific url and block access by ip on admin folder -
i have php file front end needs trigger php file admin back-end can't because added in .htaccess:
errordocument 403 "forbidden order allow,deny allow 182.112.0.1/13 allow 76.112.0.1/13 .... and echo's in interior of php file forbidden error. there anyway overcome htaccess file?
something like
errordocument 403 "forbidden order allow,deny allow 182.112.0.1/13 allow 76.112.0.1/13 .... allow file.php // doesn't work
you can use mod_setenvif.
so should work:
setenvifnocase request_uri "file\.php" allowed_php errordocument 403 "forbidden order allow,deny allow 182.112.0.1/13 allow 76.112.0.1/13 allow env=allowed_php
Comments
Post a Comment