php - Codeigniter 3 Routing Issues -


i have setup route in routes.php file this:

$route['videos/video'] = 'videos';

so if user enters:

http://domain.com/videos/video/

i want load videos page works, issue running is keeping url same when user clicks on 1 of videos videos page url this:

http://domain.com/videos/video/video/1

when should this:

http://domain.com/videos/video/1

is there way change behavior?

also, there way hide method in url?

$route['videos/video'] = "videos/index"; $route['videos/video/(:num)'] = "videos/video/$1"; 

Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -