Questions tagged as 'url'

3
answers

How to format title for url format?

For example, I have a title: 'Test Title Url'. But I need to leave it in url format, is there any function that does this?     
asked by 15.04.2015 / 16:48
2
answers

How important is it to use a friendly URL?

For example: meusite.com.br/posts/isto-e-um-slug-de-um-post instead of meusite.com.br/posts/295837 In the first case, the URL is much more user friendly, but there is a cost of time to develop and maintain something like this. In t...
asked by 20.06.2014 / 13:07
3
answers

Enter page using the bank ID in ASP.NET

I need to make a page that can be accessed in the following format: www.exemplo.com/id/123qwe This 123qwe is the ID of a line in the database, where I will get all the data to fill the page. So far I've been able to...
asked by 24.02.2014 / 14:15
1
answer

Difficulties writing a friendly url (global) in web config

I asked the same question in the English version but I did not succeed! I have an application that will be translated into three languages pt / en / es. So far I'm going to use GlobalResources, I have no problems with this, but I'm having a l...
asked by 18.07.2014 / 16:09
1
answer

Error when trying to extract table from a site by R, how to solve?

I'm using this code, I want to import the country table into the R: library(XML) url <- "http://en.wikipedia.org/wiki/List_of_countries_by_population" country_data <- readHTMLTable(url, which=2) R returns the error: Error: failed to...
asked by 22.02.2017 / 20:56
1
answer

Does URL size influence search engine rankings?

If I have a very long link , can this be penalized by Google or other search engines? For example: www.exemplo.com.br/catalogo/nome-do-produto-descrevendo-mais-do-que-o-necessario-deixando-a-url-muito-extensa Is it worse, in the v...
asked by 04.10.2017 / 21:44
1
answer

Django: what's the difference between import / use include () and not use when configuring a URL?

from django.conf.urls import include, url from django.contrib import admin urlpatterns = [ url(r'^polls/', include('polls.urls')), url(r'^admin/', admin.site.urls), ] In this example I saw that there are two ways to call a URL, one wi...
asked by 30.12.2015 / 16:51
1
answer

how to hide subfolders of the url through .htacess

Hello! how to change a url through htacess. wanted that url: http://localhost/site/product/view/Mi00OTI/golbolaver look like this: http://localhost/site/view/Mi00OTI/golbolaver     
asked by 02.04.2017 / 21:15
2
answers

Why is 'ç' converted to% C3% A7 URL, not% E7?

When I was coding the 'ç' character for the query format (where the parameters are) from the URL, I got:   % C3% A7 % specifies a hexadecimal byte, but why almost all characters (including 'ç') must be specified by 2 hexadecimal by...
asked by 07.10.2016 / 15:49
2
answers

hide variable in url with htaccess

I wonder if there is any way to hide a subdirectory or a variable in the friendly url? Example: .htaccess RewriteRule ^([a-z,0-9,A-Z,_-]+)/categoria-([a-z,0-9,A-Z,_-]+)$ index.php?link=6&categoriaid=$1 In this case, I pass the catego...
asked by 08.11.2016 / 20:22