Questions tagged [dynamic-url]

A dynamic URL is the URL (Uniform Resource Locator) of a Web page with content that depends on variable parameters that are provided to the server that delivers it.

Dynamic URLs are different from static URLs. The content on the Web page of static URLs does not change unless the Web programmer changes the page HTML code. The content of a Web page with a dynamic URL is generated from automated queries to the website's database.

The parameters of a URL can be entered manually by the user in the URL space itself, or they may be automatically obtained through an automatic query.

You can easily identify a dynamic URL through the presence of special characters or character strings. The following is a simple example for such a special characters string: & $ + = ? % cgi

162 questions
33
votes
3 answers

Dynamic routing with getServerSideProps in Nextjs

I'm trying to learn nextjs. Struggling to work out routing with getServerSideProps. Using a free API I have a list of countries displayed on the DOM. I want to dynamically link to a country and data be fetched and displayed for that specific…
DGB
  • 1,252
  • 2
  • 16
  • 32
6
votes
4 answers

Angular 6 - Dynamic Routing with Prefix

I am working on an Angular Universal Application. I want to create dynamic routes with custom prefix but I am unable find any helpful documentation related with my case. Any Help will be appreciated... Details: What I have is, I have 4 pages with 4…
Arsal Imam
  • 2,882
  • 2
  • 24
  • 35
5
votes
1 answer

How to properly map my markdown content to dynamic URLs in Next.js?

I'd like to have the following URL structure: URL Role / markdown contents of /index.md /about markdown contents of /about.md /cookies markdown contents of /cookies.md /privacy-policy markdown contents of…
Wabbitseason
  • 5,641
  • 9
  • 49
  • 60
3
votes
3 answers

How to redirect to a dynamic url in django

I am working on a django project. in the project I have a dynamic url as follows app_name = 'test' urlpatterns = [ path('root', views.root, name='root'), path('output/', views.output_page, name='output_page'), ] There exists…
Sashaank
  • 880
  • 2
  • 20
  • 54
3
votes
1 answer

How can we get deep link url from firebase dynamic link short url programmatically?

I have QR code made by firebase dynamic link (short URL) which will redirect to the App Store/Play Store directly to download the app and read the deep link query parameters when launching the app for the first time. That works well as…
Sunil Targe
  • 7,251
  • 5
  • 49
  • 80
3
votes
1 answer

AngularJS dynamic urls

For example I have 3 links on my page: A B C, When I click A it should function something like this var app = angular.module('myApp', []); app.controller('myCtrl', function($scope, $http) { $http.get("some.url/A") .then(function(response) { …
3
votes
2 answers

Crawl and download files from informer.com using python script

For research purpose, I need to build a set of benign programs. First, I need to get these programs from http://downloads.informer.com. To do so, I have written a python script that iterates each downloading page and extract the download links into…
Bander
  • 35
  • 1
  • 8
3
votes
3 answers

Building dynamic URL using 'a href'

I am using spring-3.2 version. @RequestMapping("/company={companyId}/branch={branchId}/employee={employeeId}/info") The requestmapping is used to map a URL, so in this case when ever a URL is called using
abhishek ameta
  • 2,326
  • 7
  • 28
  • 35
3
votes
1 answer

Dynamic URL's inside Google's AppEngine

Good Afternoon, I'm currently trying to build something incredibly simple inside of the Google AppEngine. The goal is to build a simple photo sharing application that will connect back to my iPhone application. It's all a learning experience for…
Oubipaws
  • 95
  • 2
  • 10
3
votes
2 answers

php dynamic video url

What I am trying to achieve is to create a one-time video link for the user. Ones they watch the video the link expires lets say the link expires in 1h after its original creation. The problem is how to go about it. I can use mod_rewrite to…
c is corrupt
  • 33
  • 1
  • 1
  • 5
3
votes
1 answer

php CURL not working with dynamic URLs

I can't work out why this URL is not being found by CURL. The CURL engine is simply taken to a 400 error page. My code is very simple and works fantastically with non-dynamic URLs. I am hoping it's something easy to spot, for example, a missing CURL…
whizzkid
  • 324
  • 2
  • 6
3
votes
7 answers

SEO and hard links with dynamic URLs

With ASP.NET MVC (or using HttpHandlers) you can dynamically generate URLs, like the one in this question, which includes the title. What happens if the title changes (for example, editing it) and there's a link pointing to the page from another…
juan
  • 80,295
  • 52
  • 162
  • 195
2
votes
1 answer

Dynamic my profile page php keeps giving error

I'm trying to build a my profile page with dynamic url's but for some reason, my code isn't working. This is the outcome I want to have, this is what I get when I replace $username with a username from the database. And here is the error I keep…
Mauro
  • 342
  • 3
  • 10
2
votes
2 answers

how to check in flask whether a variable parameter is passed in url or not?

for example the url is : http://localhost:5000/create/user/ I want to check whether the user has passed the id parameter or not. I have done this. @app.route('/create/user/') def create_user(id=None): if id is None: …
2
votes
0 answers

Nuxt.js generate page with dynamic URL

My nuxtjs app contains page with dynamic url (actually page has two params event-slug and event-id), then in that page's asyncData method, I extract these params from URL and use for axios request. This page opens when I click on one item on list of…
user11273740
1
2 3
10 11