1
我想這個網址重寫網址在笨
http://mywebsite.local/watch/serie/le-transporteur-la-s%C3%A9rie
改寫爲
http://mywebsite.local/watch-serie-le-transporteur-la-s%C3%A9rie.html
我是如何進行呢?
我想這個網址重寫網址在笨
http://mywebsite.local/watch/serie/le-transporteur-la-s%C3%A9rie
改寫爲
http://mywebsite.local/watch-serie-le-transporteur-la-s%C3%A9rie.html
我是如何進行呢?
你需要做的htaccess文件和配置文件 重寫條件,那麼,在你的路線文件,你需要使用:
$route['watch-serie-le-transporteur-la-s%C3%A9rie\.html']='folder/controller/method';
或
$route['(:any)\.html'] = 'folder/controller/method';
[提示的可能的複製調試.htaccess重寫規則](http://stackoverflow.com/questions/9153262/tips-for-debugging-htaccess-rewrite-rules) – Fairy
檢查[本文在文檔](https://github.com/bcit- ci/CodeIgniter/blob/develop/application/config/config.php#L59)並找出那個w唉。 – Tpojka