how to remove the mark on the picture below? this url to create blog details. I use this php codeigniter language
here's the picture:

how to remove the mark on the picture below? this url to create blog details. I use this php codeigniter language
here's the picture:

If you supposed to remove the string from URL, this may help you.
parse_url().parse_str().unset.http_build_query().This will give you the URL which you supposed to do.
Other way:
If you want to go with that URL by optimizing it, use routes functionality of CodeIgniter. Check this below.
Path: application/config/routes.php/
$route['your_url_string'] = 'blog/detail';
add like this
In application/config/ruotes.php
$route['(.*)'] = 'YourController/YourMethod'; // example 'blog/detail'
In Your Controller - I guess Blog is a controller and detail is the method
class Blog extends CI_Controller{
public function __construct(){
parent::__construct();
}
public function detail(){
$id = $this->uri->segment(1); // return 8
$slug = $this->uri->segment(2); // return 77-anniversary
}
}
In View
<a href="<?=base_url('8/77-anniversary');?>">Title</a>