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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:17:53+00:00 2026-05-30T14:17:53+00:00

I am trying to write a program by running Django using manage.py runserver ip:port

  • 0

I am trying to write a program by running Django using manage.py runserver ip:port in my Linux box as a non-root user. My first objective is that if a user enters a URL in the browser http://ip:port it should display something or a welcome content.

So I modified my mysite/url.py something like this:

urlpatterns = patterns('',
    ('', ''),
    (r'^admin/', include(admin.site.urls)),
)

python manage.py runserver : runs and start fine but in browser I get below exception:

Exception Type: ImproperlyConfigured
Exception Value: Empty URL pattern view name not permitted (for pattern ”)

So how can construct the URL just like:

www.google.com
www.mail.yahoo.com
www.mysite.com

Thanks in advance

  • 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-30T14:17:54+00:00Added an answer on May 30, 2026 at 2:17 pm

    The empty pattern will match anything, so you should be anchoring it to full empty string. The second tuple parameter must also be a view name.

    In your URLconf:

    urlpatterns = patterns('',
        (r'^$', 'views.home'),     # ^$ means, beginning of string followed by end of string, in other words match on exactly empty string and nothing else
        (r'^admin/', include(admin.site.urls)),
    )
    

    In a views.py in the same directory:

    from django.http import HttpResponse
    
    def home(request):
        return HttpResponse('Hello World')
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to write a program in C (on Linux) that loops until the
I'm trying to write a byteswap routine for a C++ program running on Win
I'm trying to write my first program in C# without the use of a
I'm trying to write my first program in C# without the use of a
I'm trying to write a program using SQL and OleDB and I get an
I've been trying to write a program in C++ that will monitor running processes
I'm trying to write a program that generates a pseudorandom numbers using a seed.
I'm trying to write a program to process the BSD-style process accounting file under
I'm trying to write a program that uses sockets to connect with other instances
I'm trying to write a program that reads text from external file (string string

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.