Apache Rewrite Dışlama

1 Cevap php

Ben bu yeniden yazma kural / public / bin dışlamak nasıl sergiyi sorun yaşıyorum

RewriteCond %{REQUEST_URI} !firerift.php
RewriteRule ^(.*)$ firerift.php/$1 [L,QSA,NC]

Herhangi bir yardım mutluluk duyacağız.

1 Cevap

Sadece başka eklemek RewriteCond:

RewriteCond %{REQUEST_URI} !firerift.php
RewriteCond %{REQUEST_URI} !^/public/bin
RewriteRule ^(.*)$ firerift.php/$1 [L,QSA,NC]