Current standard .htaccess rewriterule for GS is
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]
which works for URL permalink structures like:
whatever/%slug%
whatever/%slug%/
I think it could be useful being able to have structures like:
%slug%/whatever
%slug%/whatever/
Does anyone know what rewriterule(s) would work for this?
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]
which works for URL permalink structures like:
whatever/%slug%
whatever/%slug%/
I think it could be useful being able to have structures like:
%slug%/whatever
%slug%/whatever/
Does anyone know what rewriterule(s) would work for this?