0

I have url :

http://localhost/panel/dev/dashboard

how to create htaccess, i want to :

http://localhost/panel/home.php?i=dashboard

  • you have this url :`http://localhost/panel/home.php?i=dashboard` and you want it to be : `http://localhost/panel/dev/dashboard` ? – Masivuye Cokile Sep 18 '18 at 12:49
  • 2
    Possible duplicate of [Reference: mod\_rewrite, URL rewriting and "pretty links" explained](https://stackoverflow.com/questions/20563772/reference-mod-rewrite-url-rewriting-and-pretty-links-explained) – Masivuye Cokile Sep 18 '18 at 12:49

1 Answers1

0

Something like this should work:

RedirectRule ^/panel/dev/(.+)$ /panel/home.php?i=$1 [L,QSA]
Cobra_Fast
  • 14,395
  • 8
  • 51
  • 97