DennisHermannsen Posted January 31, 2023 Share Posted January 31, 2023 Hi, It bugs me a lot that accessing addon modules is not very friendly. You'd have to access them using /index.php?m=modulename and it just looks horrible. Is there any way to configure custom routes without doing a bunch of rewrites in .htaccess? 0 Quote Link to comment Share on other sites More sharing options...
Kian Posted January 31, 2023 Share Posted January 31, 2023 (edited) .htaccess is the only way and should be used wisely so you don't risk rewriting modules developed by others. RewriteCond %{REQUEST_URI} ^/my-module-page [NC] RewriteRule ^my-awesome-page$ ./index.php?m=MyModuleName&view=my-module-page [L,QSA] Edited January 31, 2023 by Kian 0 Quote Link to comment Share on other sites More sharing options...
DennisHermannsen Posted January 31, 2023 Author Share Posted January 31, 2023 Damn, that's annoying but not surprising. Thanks for confirming, @Kian 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.