Mobile app version of vmapp.org
Login or Join
Welton855

: 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

@Welton855

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>

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Welton855

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme