skip to Main Content

i have this url :http://127.0.0.1:8000/admin/mytasks/5

i want it like this :http://127.0.0.1:8000/admin/mytasks/5

2

Answers


  1. Data passed in POST method is not shown in the address bar for example like this

    Login or Signup to reply.
  2. //your url like  http://127.0.0.1:800/admin/mytasks/5
    

    $url = ‘http://127.0.0.1:800/admin/mytasks/’ . encrypt(5)

    // And decrypt it inside controller

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search