blob: b3a07ab95ab50064ff6d5e3887a5f74e822a7123 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<Directory <%= location %> >
Order deny,allow
Allow from All
AllowOverride All
Options FollowSymlinks
Options +Indexes
</Directory>
# Add a permanent redirection for '/*' as '/en/' for english planet
<IfModule mod_alias.c>
RedirectMatch permanent ^/?$ /en/
</IfModule>
|