blob: 652a69e7957a8aa469d2e20ce6de4eb7bf704090 (
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>
|