fix: Dashboard menu stays active on all routes + remove mobile blur + add standalone admin setup guide

This commit is contained in:
dwindown
2025-11-04 22:04:34 +07:00
parent e161163362
commit 9f3153d904
4 changed files with 148 additions and 6 deletions

7
.htaccess Normal file
View File

@@ -0,0 +1,7 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp-content/plugins/woonoow/
# Standalone Admin - Redirect /admin to admin/index.php
RewriteRule ^admin(/.*)?$ admin/index.php [L,QSA]
</IfModule>