1

I want to rewrite this url

http://mywebsite.local/watch/serie/le-transporteur-la-s%C3%A9rie

to

http://mywebsite.local/watch-serie-le-transporteur-la-s%C3%A9rie.html

how i can proceed ?

YasserKaddour
  • 880
  • 11
  • 23
Kurt Koben
  • 37
  • 7
  • Possible duplicate of [Tips for debugging .htaccess rewrite rules](http://stackoverflow.com/questions/9153262/tips-for-debugging-htaccess-rewrite-rules) – Fairy Aug 13 '16 at 14:40
  • Check [this section in docs](https://github.com/bcit-ci/CodeIgniter/blob/develop/application/config/config.php#L59) and figure out something in that way. – Tpojka Aug 13 '16 at 14:41

1 Answers1

1

You need to make a rewrite condition in the htaccess file and config file Then, in your route file you need to use :

$route['watch-serie-le-transporteur-la-s%C3%A9rie\.html']='folder/controller/method';

or

$route['(:any)\.html'] = 'folder/controller/method';
elddenmedio
  • 1,030
  • 1
  • 8
  • 15