Url hide using codeigniter

后端 未结 2 1791
天命终不由人
天命终不由人 2020-12-12 07:34

I am using codeigniter... I want a clean URL from below URL

  http://localhost:8080/rtvnews/index.php/home/videonews?id=67598/newstitle 

h

2条回答
  •  隐瞒了意图╮
    2020-12-12 08:28

    Follow the steps below

    Step 1: .htaccess (the one which is at root folder)

    Options All -Indexes
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
    

    Step 2: routes.php add the code below

    $route['rtvnews/news/newstitle'] = 'Your controller/method']; //Just a syntax to change the route in codeigniter. You can change the url as per you want.
    

提交回复
热议问题