Merely wondering if it’s htacces(I’m like guessing) that allows to perform the same idea that this forum uses to change thread4342. html to obviously like showthread. phppage=4342 and so forth… how would I begin doing this
Here I use a custom-written. htaccess archive that uses mod_rewrite. mod_rewrite calls for URLs and, assigned regular expressions, converts them to figureout in other platforms. It is not with the weak of heart and soul, especially if that you do not know regular expressions.
Dang =/ I was hoping there’d be a less arduous way.. I’ve always snuck underneath the line when it comes to regular expressions.. editing other peoples’ work and melding it in mine. To me it will as well possibly be 21315413lsaf; lkjfdsa =/
Bless you anyway.
Well as an example here, showthread. php is in the syntax:
showthread. phps=sessionhash& threadid=threadid
So the regexp to convert it will be:
showthread. php\s=(a-f0-9*)& threadid=(0-9+)
to
thread$2. html
… There’s no doubt that. The first regexp matches any hex string (or an empty string), and the second matches a variety with a minumum of one digit. It then maps the other match to the appropriate position in additional string.
However confusing It took me weeks in order to strongly learn regexps.
That looks very baffling…