I need a redirect from domain.de/oxwall to www.domain.de/oxwall ... i tried different things in htaccess-file, but it didnt work.
Options +FollowSymLinksRewriteEngine on
AddEncoding gzip .gzAddEncoding gzip .gzip<FilesMatch "\.(js.gz|js.gzip)$"> ForceType text/javascript</FilesMatch><FilesMatch "\.(css.gz|css.gzip)$"> ForceType text/css</FilesMatch>
RewriteCond %{REQUEST_URI} .*/http-bindRewriteRule (.*) /http-bind [L]
RewriteCond %{REQUEST_URI} !^/index\.phpRewriteCond %{REQUEST_URI} !/ow_updates/index\.phpRewriteCond %{REQUEST_URI} !/ow_updates/RewriteCond %{REQUEST_URI} !/ow_cron/run\.phpRewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]RewriteRule (.*) index.php
to this part, i added:
RewriteEngine onRewriteCond %{HTTP_HOST} ^domain\.de [NC] RewriteRule ^(.*)$ http://www.domain.de/oxwall/ [L,R=301]
is there anyone who has an idea?
thanks a lot!
Paul