PHP-Quelltext |
|
1 2 3 4 5 6 7 |
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^-].*)/([^-].*)/([^-].*)\.html$ index.php?seite=$1&action=$2&id=$3 [L,NC]
RewriteRule ^([^-].*)/([^-].*)\.html$ index.php?seite=$1&action=$2 [L,NC]
RewriteRule ^([^-].*)\.html$ index.php?seite=$1 [L,NC]
</IfModule>
|
PHP-Quelltext |
|
1 2 3 4 5 6 7 8 9 10 11 12 |
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^-].*)/([^-].*)/([^-].*)\.html$ index.php?seite=$1&action=$2&id=$3 [L,NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^-].*)/([^-].*)\.html$ index.php?seite=$1&action=$2 [L,NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^-].*)\.html$ index.php?seite=$1 [L,NC]
</IfModule>
|
PHP-Quelltext |
|
1 2 3 |
<IfModule mod_rewrite.c>
RewriteEngine off
</IfModule>
|
PHP-Quelltext |
|
1 2 3 4 5 6 7 8 9 10 11 12 |
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^-].*)/([^-].*)/([^-].*)/$ index.php?seite=$1&action=$2&id=$3 [L,NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^-].*)/([^-].*)/$ index.php?seite=$1&action=$2 [L,NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^-].*)\/$ index.php?seite=$1 [L,NC]
</IfModule>
|
PHP-Quelltext |
|
1 2 3 4 5 6 7 8 9 10 11 12 |
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^-].*)/([^-].*)/([^-].*)\.html$ index.php?seite=$1&action=$2&id=$3 [L,NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^-].*)/([^-].*)\.html$ index.php?seite=$1&action=$2 [L,NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^-].*)\.html$ index.php?seite=$1 [L,NC]
</IfModule>
|
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Prime« (6. Januar 2011, 20:38)