mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2024-11-10 09:12:51 +08:00
22 lines
No EOL
433 B
Text
22 lines
No EOL
433 B
Text
<Files *.php>
|
|
Order Deny,Allow
|
|
Deny from all
|
|
</Files>
|
|
|
|
<Files index.php>
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Files>
|
|
|
|
<Files update.php>
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Files>
|
|
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
|
|
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
|
|
RewriteRule ^(.*)$ index.php [QSA,L] |