Answer the question
In order to leave comments, you need to log in
How to configure CNC in .htaccess with passing requests to different files?
There are two files at the root: index.phpand admin.php
Cannot teach .htaccess to process requests so that requests like:
/admin
/admin/controller
/admin/controller/action
/admin/controller/action/etc are
redirected to admin.phpand the rest toindex.php
Answer the question
In order to leave comments, you need to log in
RewriteRule ^/admin.*$ /admin.php [NC,L]
RewriteRule ^.*$ /index.php [NC,L]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question