我只是想在客户端保护我的资产文件夹。 我的所有文件都可以访问公共。 我想保护它。 我有规则 .htaccess code>,如下所示,那里有任何错误的规则吗? p>
RewriteEngine on
RewriteCond $ 1!^(index \ .php | assets | robots \ .txt)
RewriteCond%{REQUEST_FILENAME}!-f
RewriteCond%{REQUEST_FILENAME}!-d
RewriteRule ^(。*)$ index.php?/ $ 1 [L,QSA]
code> pre >
div>
I just wanna protect my assets folder in client side. All of my files can access public. I wanna protect it. I have rules .htaccess
like below, any wrong rules there?
RewriteEngine on
RewriteCond $1 !^(index\.php|assets|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]