Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6810001
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:09:12+00:00 2026-05-26T20:09:12+00:00

I want to create a webapp that dynamically redirects to a URL, based on

  • 0

I want to create a webapp that dynamically redirects to a URL, based on address that user typed. When a user visit my site by a address like this:

http://mydomain1.com/a1b2c3d4

I want redirect this user to URL:

http://mydomain2.com/register.php?id=a1b2c3d4&from=mydomain1.com
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T20:09:13+00:00Added an answer on May 26, 2026 at 8:09 pm

    Yay, I love a good fight!

    from pyramid.config import Configurator
    from pyramid.httpexceptions import HTTPFound
    from paste.httpserver import serve
    
    config = Configurator()
    
    config.add_route('redirect', '/{arg}')
    
    def redirect_view(request):
        dst = 'http://mydomain2.com/register.php?id={id}&from={host}'
        args = {
            'id': request.matchdict['arg'],
            'host': request.host,
        }
        return HTTPFound(dst.format(**args))
    config.add_view(redirect_view, route_name='redirect')
    
    serve(config.make_wsgi_app(), host='0.0.0.0', port=80)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'd like to create something similar to the shirt-designer feature found on this site:
I need to create a webapp that has a login system. the user should
I want to create a web app that will use wicket, hibernate and spring
I want to create a Web app which would allow the user to upload
I want to create a function that performs a function passed by parameter on
I want to create a simple http proxy server that does some very basic
Anybody know if it's possible to; Dynamically create LINQ classes for tables/columns that change
I'm writing a web app. Based on certain choices the user selects, it dynamically
I want to create a website/webapp to aid users in making translations of foreign
I want to create a bean that has start() and stop() methods. When the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.