no way to compare when less than two revisions

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.


blog:2008:vehtoh_blog_rec_6 [02.11.2016] (aktuell) – angelegt - Externe Bearbeitung 127.0.0.1
Zeile 1: Zeile 1:
 + 
 + 
 + ~~DISCUSSION~~  
 +   
 + ~~NOTOC~~
 + <html><postdate></html>08.03.2008 00:22:23<html></postdate></html>
 + ====== SEO ======
 + <html>Es hat mal wieder eine ganze Weile gedauert, bis ich eine funktionierende Konfiguration für die .htaccess Datei herausgefunden habe, aber last, not least:  
 +   
 +   
 +  
 +   
 + <a href="http://drupal.org">Drupal 6</a>, <a href="http://netroom.de">Netroom</a>, .htaccess  
 +   
 + <blockquote> RewriteEngine on  
 +   
 + # Modify the RewriteBase if you are using Drupal in a subdirectory and  
 + # the rewrite rules are not working properly.  
 + #RewriteBase /drup6  
 + RewriteBase /drup6  
 +   
 + # Rewrite old-style URLs of the form 'node.php?id=x'.  
 + RewriteCond %{REQUEST_FILENAME} !-f  
 + RewriteCond %{REQUEST_FILENAME} !-d  
 + RewriteCond %{QUERY_STRING} ^id=([^&amp;amp;]+)$  
 + 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=([^&amp;amp;]+)$  
 + 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]  
 + ##RewriteRule ^(.*)$ /index.php?q=$1 [L,QSA]</blockquote>  
 +   
 + edit: Wenn die Entwicklung noch ein wenig weiter fortgeschreitten ist, sollte ich auch noch <a href="http://drupal.org/project/pathauto" target="_blank">das hier</a> zur Pfadoptinierung einbauen.</html>