Hello,
I have a htaccess file in the main folder which looks like this:
Besides this I have a subdirectory scripts/demo where I have the htaccess file:
Unfortunately if I want to visit the scripts/demo/index.php then I will be redirected to the main index.php.
If I remove the PHP settings from the htaccess file in the subdir and add
then it works fine. However I need the PHP settings as well.
How can I disable url rewrite for my scripts/demo subdirectory? Which htaccess file should I edit?
Thanks in advance!
I have a htaccess file in the main folder which looks like this:
Code:
#Options FollowSymLinks
RewriteEngine On
#RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php
Code:
php_value upload_max_filesize 10M php_value post_max_size 10M php_value max_execution_time 200 php_value max_input_time 200
If I remove the PHP settings from the htaccess file in the subdir and add
Code:
RewriteEngine Off
How can I disable url rewrite for my scripts/demo subdirectory? Which htaccess file should I edit?
Thanks in advance!
Comment