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 6907037
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:23:09+00:00 2026-05-27T08:23:09+00:00

I have a simple url that doesn’t match into one of my applications (

  • 0

I have a simple url that doesn’t match into one of my applications (plaq)

main url.py:

urlpatterns = patterns('',
  #...
  url(r'^content/', include('content.urls')),
  url(r'^$', include('content.urls')),
  url(r'^plaq/', include('plaq.urls')),
  #...
)

plaq url.py:

urlpatterns = patterns('',
  (r'^$', pres),
  (r'pres^$', pres),
  (r'about^$', about),
  (r'privacy^$', privacy),
)

Trying to access to my_host/plaq/pres gives me

Using the URLconf defined in my_project.urls, Django tried these URL patterns, in this order:
…
12. ^content/
13. ^plaq/ ^$
14. ^plaq/ pres^$
15. ^plaq/ about^$
16. ^plaq/ privacy^$
…
The current URL, plaq/pres/, didn’t match any of these.

While my_host/plaq displays the good pres view

Why can’t I access to my_host/plaq/pres ?

  • 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-27T08:23:10+00:00Added an answer on May 27, 2026 at 8:23 am

    Firstly, you need to learn a bit about regexes: ^ means beginning of string, but for some reason you have it at the end.

    Secondly, your URLs end in slashes, so your urlconfs must too.

    urlpatterns = patterns('',
      (r'^$', pres),
      (r'^pres/$', pres),
      (r'^about/$', about),
      (r'^privacy/$', privacy),
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple Django view that just returns URL parameters, but if I
I have a simple form that looks like this: <%= simple_form_for @study,:url => studies_path,
I have a simple form that looks like so <% remote_form_for post, :url =>
I've bumped into several users that have cookies disabled and therefore the site doesn't
I have a simple Chrome extension that uses the content script feature to modify
I have a very simple RSpec Capybara have_selector() that doesn't seem to be working
I'm using IIS7.5. I have a simple ASP.NET webforms site that uses basic URL
I have deployed a simple REST based application in RAD. A simple URL is
I have simple question. User supplies URL to my PHP script where I fetch
I am trying to write a url.py where I have a simple view for

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.