CodeIgniter Forums
Change URL of Wallpaper Script - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Change URL of Wallpaper Script (/showthread.php?tid=62196)



Change URL of Wallpaper Script - chetan1010 - 06-18-2015

Hey Friends i am using demo.phpwscript.com Wallpaper script with codeigniter framework, i want to change its permalink structure and url. I am trying lot but i cant please help me.

File that generate url
routesDB.php
Wallpaper_private.php

There are code in routesDB.php on line 21

Code:
$route['wallpaper_page'] = array(
       'key' => 'wallpaper/(:all)/(:any)/(:any)',
       'controller' => 'wallpaper_private/index/',
       'value' => '$1/$2/$3',
       'url' => 'wallpaper/{C_SLUG_FULL}/{W_SLUG}/{W_HASH}'
);
I want to change this url to only {W_SLUG} i modify as below

Code:
$route['wallpaper_page'] = array(
   'key' => 'wallpaper_slug',
   'controller' => 'wallpaper_private/index/',
   'value' => '$1',
   'url' => '{W_SLUG}'
);
Getting error 404. I think i need to changes something is Wallpaper_private.php. Please help.