Re: Erroneous links in my URLs - all load the home page -- not a 404 or other error.page

2016-12-22 Thread Vijay Khemlani
(r'$',index2), matches anything i think you would need something like (r'^/$',index2), On Thu, Dec 22, 2016 at 8:36 AM, NoviceSortOf wrote: > Thanks for the response... Apache setting and URL's follow. > > Apache setting looks like this... > > > Require all granted > > > = > > > UR

Re: Erroneous links in my URLs - all load the home page -- not a 404 or other error.page

2016-12-22 Thread NoviceSortOf
Thanks for the response... Apache setting and URL's follow. Apache setting looks like this... Require all granted = URLS look like this urlpatterns = patterns('', (r'^search/$', search), (r'^searchadv/$', searchadv), (r'^searchcat/$', searchcat), (r'^searc

Re: Erroneous links in my URLs - all load the home page -- not a 404 or other error.page

2016-12-21 Thread Vijay Khemlani
show your urls.py On Wed, Dec 21, 2016 at 10:43 PM, NoviceSortOf wrote: > > URLs not defined in my urls.py all show my home page and not a 404 missing > page error. > > For instance > > www.mysite.com > Naturally shows my home page. > > www.mysite.com/catalogs > Shows the downloadable catalogs >

Erroneous links in my URLs - all load the home page -- not a 404 or other error.page

2016-12-21 Thread NoviceSortOf
URLs not defined in my urls.py all show my home page and not a 404 missing page error. For instance www.mysite.com Naturally shows my home page. www.mysite.com/catalogs Shows the downloadable catalogs then anything goes. www.mysite.com/thisisanonsenselink or www.mysite.com/AnythingTyped