codeigniter - Url Rewrite with Special Characters - Seo Advice Needed -


i'm using code igniter build simple website, 1 thing code igniter its pretty easy rewrite rules. anyway, ain't problem.

but lets consider situation, in website webpage itens, if name spelled correctly name special characters ( á à é è .... used in non english languages) , spaces.

lets take @ url (localhost test)

http://localhost:88/ensino/frota de veículos 

this url rewrite rule relays user class ensino , function frota_de_veiculos same if go to:

http://localhost:88/ensino/frota_de_veiculos 

however if enable source view firefox, source view title display url way:

http://localhost:88/ensino/frota%20de%20ve%c3%adculos 

now question simple url search engines consider in crawl through website?

i ask because once saw website url rewrite using special characters , spaces, , in google search display weird urls one: http://localhost:88/ensino/frota%20de%20ve%c3%adculos

note: keep in mind navigation bar pinpoints http://localhost:88/ensino/frota de veículos.

it see "frota%20de%20ve%c3%adculos", since public facing url , version underscores used internally.

urls cannot include spaces, have represented %20. browsers display literal spaces in address bar instead of %20 make them more readable. similar issues apply non-ascii characters.


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -