Home » Wapka Codes 2022 » How to build different page pattern url structure
mario 2 years ago |
Look it is very case sensitive...
/(?<token>[0-9]+)/* - link /index/123456 - :VAR(token);
/(?<token>[a-z]+[0-9]+)/* - link /index/abcdtoz0123456789 - :VAR(token);
/(?<token>[A-Z]+[a-z]+[0-9]+)/* - link /index/ABCabc01239 - :VAR(token);
/(?<token>[a-z-0-9]+)/* - link /index/a1b2c3d4 - :VAR(token);
if multiple then url must be sensitive
/(?<token>[a-z]+)/*/(?<session>[0-9]+)/* - link /index/abcd/012349 - token is: :VAR(token); and session: :VAR(session);
if tripple then url also must be sensitive
/(?<token>[a-z]+)/*/(?<session>[A-Z]+)/*/(?<apikey>[0-9]+)/* - link /index/abcd/ABCDE/012349
if want to reject some number
/(?<token>[0-5]+)/* - link /index/0123456789 - :VAR(token); 6789 will not show
if want start Capital
/(?<token>[A-z]+)/* - link /index/Wapka /index/wapka
/(?<token>[0-9]+)/* - link /index/123456 - :VAR(token);
/(?<token>[a-z]+[0-9]+)/* - link /index/abcdtoz0123456789 - :VAR(token);
/(?<token>[A-Z]+[a-z]+[0-9]+)/* - link /index/ABCabc01239 - :VAR(token);
/(?<token>[a-z-0-9]+)/* - link /index/a1b2c3d4 - :VAR(token);
if multiple then url must be sensitive
/(?<token>[a-z]+)/*/(?<session>[0-9]+)/* - link /index/abcd/012349 - token is: :VAR(token); and session: :VAR(session);
if tripple then url also must be sensitive
/(?<token>[a-z]+)/*/(?<session>[A-Z]+)/*/(?<apikey>[0-9]+)/* - link /index/abcd/ABCDE/012349
if want to reject some number
/(?<token>[0-5]+)/* - link /index/0123456789 - :VAR(token); 6789 will not show
if want start Capital
/(?<token>[A-z]+)/* - link /index/Wapka /index/wapka
comment |
Recent Comments (5)
olahypes | 2 years ago |
please teach how to create page pattern url structure like
this!!!
site.com/article/Burna-Boy-Last-Last/3737374/
or
site.com/article/Burna-Boy-Last-Last/
reply |
davisville | 2 years ago |
what i mean is that on the "index/" page, i want to have the user login page while on the "index/signup" i want to have he signup page. How can i seperate these things without the content on the "index" page showing on the "index/signup" page?
reply |
davisville | 2 years ago |
so please if i have a link like "/index/signup" , how can i make the content on /index different from that of /index/signup?
reply |