Questions tagged [custom-url]

A custom url is a url that deviates from whatever is the default url

Many web frameworks and other web related tools mandate a certain default way of generating urls. If this kind of url does not fit your needs, you are looking of a custom url.

Questions inquiring how to create certain kind of custom-urls with a given framework, or about the effects of using such urls should be tagged with custom-url

196 questions
0
votes
1 answer

How to pass argument through custom url to an application

I am using windows 7 I want to pass filename as argument which I want to open through custom url. I followed link http://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx My python code is: import…
imp
  • 1,967
  • 2
  • 28
  • 40
0
votes
1 answer

Possible to create custom urls with RESTful routing in Laravel 4

Is it possible to have custom urls without renaming controller methods when using RESTful routing with Route::controller? With Route::controller('users', 'UsersController'); I want the url to be users/registration instead of users/create without…
0
votes
1 answer

Transmitting parameters to a page via a custom URL in windows mobile 8?

I didn't find an answer about what i'm trying to do I'm launching my app via a custom url (like "myurl://...) and I'd like to get the parameters My app is called via an url that looks like this :…
DevBob
  • 835
  • 2
  • 9
  • 29
0
votes
1 answer

Performing code in background without UI in windows phone 8 (via custom URI)

I'm having trouble developping an app for Windows phone. Visually, the app is just a panorama displayed via the MainPage, and does nothing else. All the code must be running in background without the user seeing it. The app is open via a custom URL…
DevBob
  • 835
  • 2
  • 9
  • 29
0
votes
1 answer

Change a URL in wordpress for SEO

I am using a custom plugin, which searches data and displays it For eg, If i am displaying cars with manufacturer hyundai, it shows http://www.mybaseurl.com/inventory/?car_manufacturer=hyundai I want to change this URL…
0
votes
1 answer

Custom links with .htaccess file to access two parameters or more

I am working on XAMPP V.3.2.1 on Windows 8.1 64-bit. I have the following code in my .htaccess file: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)/?$ /?cmd=$1 [NC,L] Now, when i write…
Abdul Rahman
  • 1,669
  • 4
  • 24
  • 39
0
votes
1 answer

How to handle instant messaging URL from Contacts application (like Facebook)

I have a feeling this one's going to be hard. On iOS7, the Facebook app has the ability to be launched directly from the iOS Contact application, by clicking on any contact's IM (instant messaging) info: This only works if you enable Facebook to…
Gui13
  • 12,993
  • 17
  • 57
  • 104
0
votes
1 answer

Win 8.1 // WebView // Handle custom protocol on HTTR 302 redirect

I'm on the way to upgrade a windows 8 application to 8.1. A new feature should be a checkout process using a WebView. In some cases the server responds a HTTP 302 Code and the webview is redirected to an url with a custom protocol (e.g.…
addy
  • 1,215
  • 1
  • 9
  • 11
0
votes
1 answer

emberjs : dynamic url

I'm trying to do a custom url. More specifically, what I've already done is: mypage.com/details/1 What I'd like to do is: mypage.com/details/john-doe Of course, I want exactly the same behavior as now, with the sole difference being a custom string…
None None
  • 537
  • 2
  • 8
  • 15
0
votes
1 answer

AddThis in Joomla Category Blog Override. Linking to corresponding articles

I've overwritten the "blog.php", for Category Blog to put the AddThis social media sharing plugin at the bottom of each article. Working on joomla 3.0 The Category blog layout displays many articles per page. By default AddThis uses your current…
Leopold Kristjansson
  • 2,246
  • 28
  • 47
0
votes
1 answer

ImageResizer custom urls for bundled effects

We're looking to do something with ImageResizer that should be very easy but couldn't find any documentation on it. We'd like to bundle effects into a shorter url request. For example, instead of doing something like…
Summit
  • 1,223
  • 2
  • 12
  • 15
0
votes
3 answers

How do I define a custom URL for a form confirmation page?

I am creating a basic product landing page with Rails in which users can enter their email address to be notified when the product launches. (Yes, there are services/gems etc that could do this for me, but I am new to programming and want to build…
andersr
  • 1,055
  • 1
  • 13
  • 24
0
votes
1 answer

syncing a file to the web, and accessing through a "custom" url

Are there any websites out there that allows file syncing to a folder and the files in the folder can be accessed through the folder via http? i.e. My folder to be synced could be called "share." And a file can be "file.txt". I want to access…
user1266174
  • 111
  • 2
  • 11
0
votes
1 answer

MVC user's full name in Url, how to handle duplicates

I want to setup the following url in my MVC4 website, using the user's full name in the url: http://www.myapp.com/profile/steve-jones I have setup the following route in Global.asax: routeCollection.MapRoute( "profile",…
DevDave
  • 6,700
  • 12
  • 65
  • 99
0
votes
1 answer

Launch ipad application from attachment in email

I am sending a zip file containing images and text file as an email attachment in ipad. Now my required functionality is that I want to launch my app when user taps on attachment for downloading and save the zip file in documents folder of app. How…