The url tag has no wiki summary.
3
votes
3answers
167 views
When did the first “REST”-model and friendly URL web technology come to be?
Everyone knows that the "current" way to do things is to have user-readable URLs. Like:
http://example.com/blog/edit/1234
Rather than:
http://example.com/blog.php?action=edit&id=1234
When ...
2
votes
1answer
71 views
Creating a site just for URL redirecting (.NET MVC) due to changing domains and URLs
I'd just like to hear about any experience creating a (simple) site for redirecting requests.
Basically we have multiple domains, but as we add more domains and change URLs, there is a huge problem ...
-5
votes
1answer
78 views
How can sites redirect after a URL change? [closed]
When you go to thepiratebay.se, thepiratebay.org, or thepiratebay.is (their old domains), it automatically sends you to their new domain, thepiratebay.sx.
Is this only possible because they still own ...
1
vote
3answers
116 views
Pass around record ids in the url in PHP
I'm doing a PHP application with CodeIgniter and most of my controllers accept record ids as parameters for retrieving purposes.
I also pass record ids in my forms action.
Like this: ...
0
votes
0answers
57 views
Categorize websites based on URL [closed]
I am trying to categorize websites based on the URL. I am creating two tables. One of them will contained the URLs captured from the http packets and the other will contain categories such as sports, ...
1
vote
3answers
271 views
Is path in Set-Cookie URL encoded?
I'm writing some code that sets cookies and I'm wondering about the exact semantics of the Set-Cookie header. Imagine the following HTTP header line:
Set-Cookie: name=value; Path=/%20
For with path ...
1
vote
2answers
357 views
Using double dot notation in URL link
I've recently been working on a project and I've been seeing two different forms of url's being used.
src="../MyLinkUrl"
and
src="/MyLinkUrl"
We are using MVC .NET and the times I have seen the ...
5
votes
5answers
370 views
Best way to protect website application code
Background
I have a web application that I host on my own server. I have clients who use the application as is, but some have asked if they can host the application on their own server. This enables ...
0
votes
2answers
179 views
add a prefix to localhost [closed]
Is there any possibility to add a prefix before localhost?
My question is that I want to add a prefix before localhost for my project url (ie. "dev.localhost/project/default.htm"). This is for an ...
0
votes
0answers
176 views
ASP.NET MVC Controllers & Actions In Regards To URLs And SEO [closed]
The general idea is that if I were to create an MVC site, simple pages such as the contact and about pages will be placed under the Home Controller. So my URL would look like ...
2
votes
1answer
210 views
Should I implement slugs with my already fairly long URLs? [closed]
I'm considering implementing slugs in my blog. My blog uses MongoDB. One of the side-effects of using MongoDB is that it uses relatively long hex string IDs.
Example
before: ...
2
votes
2answers
228 views
How do we set a link to a Paid version of app if we don't have the app in App Store ?
If we don't have the free and the paid apps on the Apple app store yet, how would we program in the free version to link to the paid version because the link is not there yet?
Do we have to have a ...