[Solved] A specific htaccess inquiry [closed]


I think, this doesn’t really make sense. As stated in the comments, you can use mod_rewrite to send your shortened URLs to the controller, but controller and function need to be static. So having a separate function doesn’t really help, controller should be enough.

One thing you could do is selecting the RewriteRules in your .htaccess depending on the $arg1 using for example RewriteCond. That way you could send different URLs to different controllers. It depends on your URL structure if this is feasible.

solved A specific htaccess inquiry [closed]