ProcessWire - Troubleshooting: Unterschied zwischen den Versionen
Aus Wikizone
(Die Seite wurde neu angelegt: „Processwire Probleme lösen: Links * https://processwire.com/docs/tutorials/troubleshooting-guide/“) |
|||
| Zeile 4: | Zeile 4: | ||
* https://processwire.com/docs/tutorials/troubleshooting-guide/ | * https://processwire.com/docs/tutorials/troubleshooting-guide/ | ||
| + | |||
| + | == 1und1 Server == | ||
| + | .htaccess File: | ||
| + | <pre> | ||
| + | # ----------------------------------------------------------------------------------------------- | ||
| + | # 19. Pass control to ProcessWire if all the above directives allow us to this point. | ||
| + | # For regular VirtualHosts (most installs) | ||
| + | # ----------------------------------------------------------------------------------------------- | ||
| + | #RewriteRule ^(.*)$ index.php?it=$1 [L,QSA] | ||
| + | |||
| + | # ----------------------------------------------------------------------------------------------- | ||
| + | # 20. If using VirtualDocumentRoot (500 NOTE): comment out the one above and use this one instead | ||
| + | # ----------------------------------------------------------------------------------------------- | ||
| + | RewriteRule ^(.*)$ /index.php?it=$1 [L,QSA] | ||
| + | </pre> | ||
Version vom 5. September 2017, 14:52 Uhr
Processwire Probleme lösen:
Links
1und1 Server
.htaccess File:
# ----------------------------------------------------------------------------------------------- # 19. Pass control to ProcessWire if all the above directives allow us to this point. # For regular VirtualHosts (most installs) # ----------------------------------------------------------------------------------------------- #RewriteRule ^(.*)$ index.php?it=$1 [L,QSA] # ----------------------------------------------------------------------------------------------- # 20. If using VirtualDocumentRoot (500 NOTE): comment out the one above and use this one instead # ----------------------------------------------------------------------------------------------- RewriteRule ^(.*)$ /index.php?it=$1 [L,QSA]