ich brauche einmal eure hilfe. Ich kriegs net hin dabei habe ich das schon xx mal gemacht.
Ich hab die CMSms Seite auf woatec.org/cmsms installiert und abgelegt. Nun taucht jedesmal in der Domain woatec.org/cmsms/.... auf. Das sieht natürlich nicht so schön aus und Google mag das auch net. Mod Rewrite ist soweit aktiviert und läuft auch. Nur eben das "cmsms" stört da.
Problem 2:
Eigentlich hab ich eine Rule eingeführt die besagt: wenn woatec.org dann www.woatec.org. Damit doppelter Content verhindert wird. Auf der Hauptadresse klappt das auch. Sobald ich einen Menü Punkt auswähle ist das www. wieder weg.
Wer kann da helfen??
Code: Select all
# Attempt to override some php settings, these settings may be helpful on some hosts if your
# default configuration does not meet CMS's minimum requirements, and your host
# has given your account appropriate permissions
#php_value upload_max_filesize "10M"
#php_value session_save_path "tmp/cache"
#php_flag magic_quotes_gpc Off
#php_flag register_globals Off
#php_flag session.use_trans_sid Off
# (this is important, so uncomment if your host permit)
#Options -Indexes
#ServerSignature Off
#
Options +FollowSymLinks
#
<IfModule mod_rewrite.c>
RewriteEngine on
#
#Sub-dir e.g: /cmsms
RewriteBase /cmsms
#
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
RewriteCond %{HTTP_HOST} ^woatec.org\.de$
RewriteRule ^.*$ http://www.woatec.org%{REQUEST_URI} [R=301,L]
# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
</IfModule>