Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 670

Warning: Invalid argument supplied for foreach() in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 671

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 675

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 670

Warning: Invalid argument supplied for foreach() in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 671

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 675

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 670

Warning: Invalid argument supplied for foreach() in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 671

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 675

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 670

Warning: Invalid argument supplied for foreach() in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 671

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 675

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 670

Warning: Invalid argument supplied for foreach() in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 671

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 675

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 670

Warning: Invalid argument supplied for foreach() in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 671

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 675

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 670

Warning: Invalid argument supplied for foreach() in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 671

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 675

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 670

Warning: Invalid argument supplied for foreach() in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 671

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /www/htdocs/v166574/fusca/wiki/includes/MagicWord.php on line 675
.htaccess – Mein Wiki

.htaccess

Aus Mein Wiki

Wechseln zu: Navigation, Suche
(Cheat Sheets)
(Cheat Sheets)
 
Zeile 19: Zeile 19:
* http://www.askapache.com/htaccess/modrewrite-tips-tricks.html
* http://www.askapache.com/htaccess/modrewrite-tips-tricks.html
 +
 +
* http://www.workingwith.me.uk/articles/scripting/mod_rewrite
 +
 +
* http://www.kb.mediatemple.net/questions/85/Using+.htaccess+rewrite+rules#gs
 +
 +
== Tools ==
 +
* Mod Rewrite Generator
 +
** http://www.generateit.net/mod-rewrite/
 +
== Samples ==
== Samples ==
Zeile 36: Zeile 45:
  #differently. If you want you can add an extra parameter too, like:
  #differently. If you want you can add an extra parameter too, like:
  RewriteRule /path/index.php /path/iphone.php?extra=param [QSA,L]
  RewriteRule /path/index.php /path/iphone.php?extra=param [QSA,L]
 +
 +
RewriteCond %{REQUEST_FILENAME} !-f
 +
RewriteCond %{REQUEST_FILENAME} !-d
 +
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
 +
 +
=== subdomain to folder/directory ===
 +
Is it possible to use .htaccess to rewrite a sub domain to a directory?
 +
Example: http://sub.domain.com/ shows the content of http://domain.com/subdomains/sub/
 +
 +
RewriteEngine on
 +
RewriteCond %{HTTP_HOST} ^sub.domain.com
 +
RewriteRule ^(.*)$ http://domain.com/subdomains/sub/$1 [L,NC,QSA]
 +
#For a more general rule (that works with any subdomain, not just sub)
 +
#replace the last two lines with this:
 +
RewriteEngine on
 +
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com
 +
RewriteRule ^(.*)$ http://domain.com/subdomains/%1/$1 [L,NC,QSA]
 +
 +
=== ... ===
 +
###################################################
 +
# Turn the RewriteEngine on.                      #
 +
###################################################
 +
RewriteEngine on
 +
###################################################
 +
# Add a leading www to domain if one is missing.  #
 +
###################################################
 +
# If this rule is used, the rewriting stops here  #
 +
# and then restarts from the beginning with the  #
 +
# new URL                                        #
 +
###################################################
 +
 +
RewriteCond %{HTTP_HOST} !^www\.
 +
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
 +
 +
###################################################
 +
# Do not process images or CSS files further      #
 +
###################################################
 +
# No more processing occurs if this rule is      #
 +
# successful                                      #
 +
###################################################
 +
 +
RewriteRule \.(css|jpe?g|gif|png)$ - [L]
 +
 +
###################################################
 +
# Add a trailing slash if needed                  #
 +
###################################################
 +
# If this rule is used, the rewriting stops here  #
 +
# and then restarts from the beginning with the  #
 +
# new URL                                        #
 +
###################################################
 +
 +
RewriteCond %{REQUEST_URI} ^/[^\.]+[^/]$
 +
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [R=301,L]
 +
 +
###################################################
 +
# Rewrite web pages to one master page            #
 +
###################################################
 +
# /somepage/            => master.php            #
 +
#                            ?page=somepage      #
 +
# /somesection/somepage => master.php            #
 +
#                            ?section=somesection #
 +
#                            &page=somepage      #
 +
# /somesection/somesub/somepage/                  #
 +
#                      => master.php            #
 +
#                            ?section=somesection #
 +
#                            &subsection=somesub  #
 +
#                            &page=somepage      #
 +
###################################################
 +
# Variables are accessed in PHP using            #
 +
# $_GET['section'], $_GET['subsection'] and      #
 +
# $_GET['page']                                  #
 +
###################################################
 +
# No more processing occurs if any of these rules #
 +
# are successful                                  #
 +
###################################################
 +
 +
RewriteRule ^([^/\.]+)/?$ /master.php?page=$1 [L]
 +
RewriteRule ^([^/\.]+)/([^/\.]+)/?$ /master.php?section=$1&page=$2 [L]
 +
RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ /master.php?section=$1&subsection=$2&page=$3 [L]
= Authentifizierung mit .htaccess =
= Authentifizierung mit .htaccess =

Aktuelle Version vom 02:09, 18. Jun. 2013

Persönliche Werkzeuge