On my domain public directory is the laravel public directory.so there is index.php and htaccess file. but i want to access mydomain.com/demo/
, where demo
is a folder.its always redirect me to my home page as mydomain.com
because of route rewrite . so how can i access folders in mydomain.com. my htaccess
is followed. ...
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
thanks in advance