35 lines
713 B
Plaintext
35 lines
713 B
Plaintext
##### Kapitel 4 - URLs umschreiben
|
|
|
|
### mod_alias
|
|
|
|
Include conf/extra/httpd-autoindex.conf
|
|
|
|
Alias /sysdoc/ "/usr/share/doc/"
|
|
<Directory "/usr/share/doc/">
|
|
Options Indexes
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
|
|
|
|
### mod_userdir
|
|
|
|
LoadModule userdir_module modules/mod_userdir.so
|
|
|
|
Include conf/extra/httpd-userdir.conf
|
|
|
|
### mod_rewrite
|
|
|
|
LoadModule rewrite_module modules/mod_rewrite.so
|
|
|
|
RewriteEngine On
|
|
RewriteRule ^/zwei\.html$ /eins.html
|
|
RewriteRule ^/drei\.html$ /eins.html [R]
|
|
|
|
## Weiteres
|
|
RewriteRule vier.html /eins.html [R]
|
|
RewriteRule ^/google\.html$ http://google.de [R]
|
|
RewriteRule ^/ssl\.html$ https://localhost/ssl.html [R]
|
|
RewriteRule phpmyadmin http://www.disney.com [R,NC]
|
|
|