Realurl config in apache2 vhost
There was a time, when I shared a blog. This post was written by Stephan. See all blogpost from him or stalk him on github.
Realurl ist ja so eine Sache: Wenn es geht, freuen sich alle, wenn nicht, dann wünschen sich alle Rest ;-D. Hier die nötige Konfiguration, die bei einer Apache2-Konfiguration mit modrewrite nötig ist. Die realurl-Konfiguration klappt dann auch wunderbar mit tt_news.
#NameVirtualHost *:80
RewriteEngine On
RewriteRule ^[^/]*\.html$ /index.php
ServerAdmin webmaster@localhost
ServerName www.example.de
DocumentRoot /var/www/data/
<LocationMatch "^/(?!(typo3(/|conf|temp)|fileadmin|uploads|t3lib|clear.gif|index.php|favicon.ico))">
RewriteEngine on
RewriteRule .* /index.php [PT]
</LocationMatch>Options FollowSymLinks
AllowOverride All
RewriteBase /var/www/data
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
Alias /doc/ "/usr/share/doc/"
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
Wichtig sind hier vor allem die Zeilen bei LocationMatch. Lokale unterschiede bei euren Installationen bitte berücksichtigen.
Noch ausführlicher geht es natürlich auch ---> weitere Möglichkeiten
Viel Spaß mit Typo3
Gruß Stephan