For our school we use a wordpress network. The main domain gives access to general information and sub-sites are specific projects managed by students.
I would like that all sub-sites have their url appended with a fake folder name.
example
Say the main domain is school.edu
Currently, my sub-sites permalinks are
school.edu/project1/
school.edu/project2/
I would like that they becomes:
school.edu/projects/project1/
school.edu/projects/project2/
How can i do it?
I tried adding this in a .htaccess. It redirects correctly but then the url is changed back to the "real" one.
RewriteRule ^projects/([_0-9a-zA-Z-]+/)? $1 [R=301,L]