My Django URLs not picking up dashes
Im trying to work out a url that will match domain.com\about-us\ & domain.com\home\ I have a url regex: ^(?P<page>\w+)/$ but it won't match the url with the - in it. I've tried ^(?P<page>\.)/$ ^(?P<page>\*)/$ but nothing seems to work. Try: ^(?P<page>[-\w]+)/$ [-\w] will accept a-z 1-9 and dash 来源: https://stackoverflow.com/questions/531243/my-django-urls-not-picking-up-dashes