How to run htaccess in a folder only

RewriteEngine on
RewriteBase /~kbakst/admin/
#enables you to access PHP files with HTML extension
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^$ php/index.php [L]
RewriteRule ^(.*)\.html$ php/$1.php [NC]

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *