: If I understand you correctly this should be in the parent directories .htaccess file: <IfModule mod_rewrite.c> # enable mod_rewrite RewriteEngine On # redirect to the view folder RewriteRule
If I understand you correctly this should be in the parent directories .htaccess file:
<IfModule mod_rewrite.c>
# enable mod_rewrite
RewriteEngine On
# redirect to the view folder
RewriteRule (.*) view/ [L]
</IfModule>
And this should be in the .htaccess file in the view folder:
<IfModule mod_rewrite.c>
RewriteEngine On
# check to make sure this isn't a file or directory
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
</IfModule>
More posts by @Welton855
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.