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
My sub-sites are
school.edu/project1/
school.edu/project2/
I would like that it becomes:
school.edu/projects/project1/
school.edu/projects/project2/
How can i do it?
UPDATE 1
I tried adding this rule to my .htaccess. It redirects correctly, but then the displayed URL doesn’t stay the one i want, it reverts back to the original “real” url.
RewriteRule ^projects/([_0-9a-zA-Z-]+/)? $1 [R=301,L]