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

  • Home
  • SEARCH
  • 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 6926075
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T10:52:16+00:00 2026-05-27T10:52:16+00:00

urls.py urlpatterns = patterns(”, (r’^page/\w+/$’, get_page), (r”, main), ) calling : http://localhost:8081/page/cricket calls the

  • 0

urls.py

urlpatterns = patterns('',
    (r'^page/\w+/$', get_page),
    (r'', main),
)

calling : http://localhost:8081/page/cricket

calls the main, function and not get_page

How can I make this work?

  • 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-27T10:52:17+00:00Added an answer on May 27, 2026 at 10:52 am

    The regular expression is wrong. It would match http://localhost:8081/page/cricket/ or http://localhost:8081/page/dog/. It does not match http://localhost:8081/page/cricket because the regular expression requires a / at the end.

    Based on your comments and question you may want something like:

       (r'^page/(?P<loc>.*)', get_page)
    

    This would also pass everything after page/ to the the get_page function in the named parameter ‘loc’.

    If you’re having trouble with the meaning of the special symbols please refer to Python’s regular expression reference.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So, here is one of my urls.py urlpatterns = patterns('items.views', url(r'^(?P<item_id>[\d+])/$', 'view_listing', name=item_view), )
I have these URLs in my project .urls: urlpatterns = patterns('', (r'^categories/', include('category.urls')), )
I've got this urls.py : urlpatterns = patterns('', # Plugin actions url(r'plugin/((?P<slug>[a-zA-Z0-9_\-]*)/)?$', PluginView.as_view(), name='wa-plugin'),
What I'm trying to do: # urls.py urlpatterns = patterns('', (r'^info/(?P<user>[-\w+])/(?P<app>[-\w+])/', include(%app%.urls)), ) which
I am doing something like this in myproject.myapp.urls : from django.conf.urls.defaults import * urlpatterns
Example URLs http://www.youtube.com/user/Scobleizer#p/u/1/1p3vcRhsYGo http://www.youtube.com/watch?v=cKZDdG9FTKY&feature=channel http://www.youtube.com/watch?v=yZ-K7nCVnBI&playnext_from=TL&videos=osPknwzXEas&feature=sub http://www.youtube.com/ytscreeningroom?v=NRHVzbJVx8I Any regex that will pull the correct YID
I have URLs of the form http://domain/image/⟨uuid⟩/42x42/some_name.png . The Web server (nginx) is configured
I have tabs that calls via javascript urls of django to complete the container
I have URLs like http://example.com/depict?smiles=CO&width=200&height=200 (and with several other optional arguments) My urls.py contains:
I am trying to get a url structure like this. http://example.com/blog/1/title-name-goes-here My main urls

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.