Home » Wapka Codes 2022 » How to build different page pattern url structure
Look it is very case sensitive...
/(?[0-9]+)/* - link /index/123456 - :VAR(token);
/(?[a-z]+[0-9]+)/* - link /index/abcdtoz0123456789 - :VAR(token);
/(?[A-Z]+[a-z]+[0-9]+)/* - link /index/ABCabc01239 - :VAR(token);
/(?[a-z-0-9]+)/* - link /index/a1b2c3d4 - :VAR(token);
if multiple then url must be sensitive
/(?[a-z]+)/*/(?[0-9]+)/* - link /index/abcd/012349 - token is: :VAR(token); and session: :VAR(session);
if tripple then url also must be sensitive
/(?[a-z]+)/*/(?[A-Z]+)/*/(?[0-9]+)/* - link /index/abcd/ABCDE/012349
if want to reject some number
/(?[0-5]+)/* - link /index/0123456789 - :VAR(token); 6789 will not show
if want start Capital
/(?[A-z]+)/* - link /index/Wapka /index/wapka
comment |
Recent Comments