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.php
and 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.php
and 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