from django.urls import path, re_path from . import views urlpatterns=[ path('',views.index,name='idex'), path('me.php',views.me,name='me2'), path('me',views.me,name='me'), path('contact.php',views.contact,name='contact2'), path('contact',views.contact,name='contact'), path('specs',views.specs,name='specs'), path('vids.php',views.songs,name='songs2'), path('songs',views.songs,name='songs'), path('webhost.php',views.host,name='webhost2'), path('webhost',views.host,name='webhost'), path('free',views.free,name='free'), path('myroids/',views.myroids,name='myroids2'), path('myroids',views.myroids,name='myroids'), path('myroids/browser',views.myroidbrowser,name='mybrowse'), path('nerdshope',views.nerdshope,name='shop'), path('syntax/',views.syntax,name='syntaxer2'), path('syntax',views.syntax,name='syntaxer'), path('teapot',views.teapot,name='teapot'), path('toask',views.articles,name='articles'), path('todd',views.todd,name='todd'), re_path('r/(.*)',views.redirect,name='redirect'), path('bikebunny',views.bikebunny,name='bikebunny'), path('md.rss',views.md,name='md'), ]