如何防止直接访问PHP页面

时间:2016-03-25 04:54:03

标签: php .htaccess

我想阻止我的PHP页面的直接访问。我尝试运行“ .htaccess ”,但它没有运行。我的项目中有很多页面。但我想要其中一些。我的PHP页面是: example1.php example2.php

我的“ .htaccess ”代码是:

     Options +FollowSymlinks
     RewriteEngine on
     RewriteRule    ^/?example/([0-9]+)$    exam-ple.php    [NC,L]

如果没问题,那么为什么它没有运行。 我想要任何类型的解决方案。

1 个答案:

答案 0 :(得分:0)

尝试将此代码放在PHP页面的最顶层。

if ( ! defined('BASEPATH')) exit('No direct script access allowed');