Hello forums
I have these rules in my .htacces
RewriteRule ^about/?$ home.php?perma=$1 [NC,L]
RewriteRule ^directory/?$ home.php?perma=$1 [NC,L]
RewriteRule ^contact/?$ home.php?perma=$1 [NC,L]
I’m trying to put these rules in 1 line, I tried:
RewriteRule ^(about-us)(directory)(contact)/?$ home.php?perma=$1 [NC,L]
but it didn’t work
I already have this:
RewriteRule ^([A-Za-z0-9-]+)/?$ account.php?perma=$1 [NC,L]
but I want ‘about’, ‘directory’ and ‘contact’ to be specific only with home.php
Thanks