Clean Urls + Subdomain
Eingetragen von Carino (30)
am 28.11.2007 - 17:47 Uhr in
am 28.11.2007 - 17:47 Uhr in
Hallöchen,
ich versuche gerade auf der Domain http://drupal.lelafe.de Clean Urls zu aktivieren.
Das Feld ist untergraut und der Test mit nem 404er negativ.
Hier der Wesentliche Teil meiner .htaccess Datei.
Kennt sich jemand damit aus, bzw. wo pack ich die Subdomain rein, da es ja anscheinend nicht automatisch klappt :-(
Der Hoster unterstützt im Übrigen mod_rewrite und es gibt keine weitere .htaccess in einem anderen Ordner.
Danke im Voraus,
Carino
...
# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
# If your site can be accessed both with and without the 'www.' prefix, you
# can use one of the following settings to redirect users to your preferred
# URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
#
# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
# RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
#
# To redirect all users to access the site WITHOUT the 'www.' prefix,
# (http://www.example.com/... will be redirected to http://example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
# Modify the RewriteBase if you are using Drupal in a subdirectory and
# the rewrite rules are not working properly.
RewriteBase /
# Rewrite old-style URLs of the form 'node.php?id=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^id=([^&]+)$
#RewriteRule node.php index.php?q=node/view/%1 [L]
# Rewrite old-style URLs of the form 'module.php?mod=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
#RewriteRule module.php index.php?q=%1 [L]
# Rewrite current-style URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
- Anmelden oder Registrieren um Kommentare zu schreiben
komisch, sollte eigentlich
am 28.11.2007 - 18:11 Uhr
komisch, sollte eigentlich funktionieren.
vielleicht liegts auch an der Zeichencodierung von deinem File. Wenn du Windows hast öffne dein htaccess file einfach mal mit dem wordpad und speichere einfach wieder ab. Dann neu hochladen.
Aber, du kannst auch folgendes mal probieren:
Das ist ein dynamischer rewrite um alle möglichen angelegten subdomains auf die variante "ohne" www umzuleiten. (ist einfach dein code mit der entsprechenden Änderung in der Mitte.)
...
# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
# If your site can be accessed both with and without the 'www.' prefix, you
# can use one of the following settings to redirect users to your preferred
# URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
#
# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
# RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
#
# To redirect all users to access the site WITHOUT the 'www.' prefix,
# (http://www.example.com/... will be redirected to http://example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*) http://%1/$1 [L,R=301]
# Modify the RewriteBase if you are using Drupal in a subdirectory and
# the rewrite rules are not working properly.
RewriteBase /
# Rewrite old-style URLs of the form 'node.php?id=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^id=([^&]+)$
#RewriteRule node.php index.php?q=node/view/%1 [L]
# Rewrite old-style URLs of the form 'module.php?mod=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
#RewriteRule module.php index.php?q=%1 [L]
# Rewrite current-style URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
» forward-media.de Drupal Entwicklung | Drupal Tutorials
Hallo Jochen, danke für
am 28.11.2007 - 23:29 Uhr
Hallo Jochen,
danke für deine Tips. Die falsche Codierung habe ich bereits ausgeschlossen, da ich alles UTF-8 speicher,
deinen Code habe ich auch probiert, aber macht leider keinen Unterschied.
Spaßeshalber habe ich das ganze auf den Hauptdomainnamen gelegt und es funktioniert...also liegt es tatsächlich an der Subdomain :-(
Carino
Naja, ich hab ne Testseite
am 28.11.2007 - 23:42 Uhr
Naja, ich hab auch ne Testseite unter drupal.meinedomain.de laufen und das geht ohne probleme (ging ach mit der standard htaccess) ... deshalb echt komisch...
» forward-media.de Drupal Entwicklung | Drupal Tutorials
Naja hab das ganze jetzt
am 30.11.2007 - 01:12 Uhr
Naja hab das ganze jetzt local und es geht. Aber auch nicht tragisch. Schätze es liegt am Provider, da hatte ich hin und wieder Probleme in dem Bereich. Danke jedenfalls für deine Mühe.
Ps. Kann man auch themen hier abonnieren?
Carino