Skip to main content
edited body
Source Link

What I ended up going with was:

RewriteRule ^tags/?$ tags.php [L] RewriteRule ^tags/&(tags\[\]=.*)$ tags.php?$1 [L] RewriteRule ^tags/([^/]+)(/?.*)$ tags/$2&tags[]=$1 [N][L] 

Which does the same thing but builds it in reverse.

What I ended up going with was:

RewriteRule ^tags/?$ tags.php [L] RewriteRule ^tags/&(tags\[\]=.*)$ tags.php?$1 [L] RewriteRule ^tags/([^/]+)(/?.*)$ tags/$2&tags[]=$1 [N] 

Which does the same thing but builds it in reverse.

What I ended up going with was:

RewriteRule ^tags/?$ tags.php [L] RewriteRule ^tags/&(tags\[\]=.*)$ tags.php?$1 [L] RewriteRule ^tags/([^/]+)(/?.*)$ tags/$2&tags[]=$1 [L] 

Which does the same thing but builds it in reverse.

Source Link

What I ended up going with was:

RewriteRule ^tags/?$ tags.php [L] RewriteRule ^tags/&(tags\[\]=.*)$ tags.php?$1 [L] RewriteRule ^tags/([^/]+)(/?.*)$ tags/$2&tags[]=$1 [N] 

Which does the same thing but builds it in reverse.