httpd/manual.conf

14 lines
344 B
Plaintext
Raw Normal View History

2012-03-13 16:58:07 +00:00
#
# This configuration file allows the manual to be accessed at
# http://localhost/manual/
#
Alias /manual /usr/share/httpd/manual
2012-03-13 16:58:07 +00:00
<Directory "/usr/share/httpd/manual">
Options Indexes
AllowOverride None
Require all granted
2016-04-06 10:39:40 +00:00
RedirectMatch 301 ^/manual/(?:da|de|en|es|fr|ja|ko|pt-br|ru|tr|zh-cn)(/.*)$ "/manual$1"
2012-03-13 16:58:07 +00:00
</Directory>