| Author |
Message |
carrelet
Joined: 11 Oct 2005 Posts: 56
|
Posted: 06 Dec 2005 - 10:41 pm Post subject:
https secure shell login with TYPO3
|
|
|
add to .htaccess file
| Line: |
Code: |
1 2 3
| |
RewriteCond %{HTTP_HOST} ^([^:]+)
RewriteRule ^/your/path_to/typo3/?$https://your.server.tld/your/path_to/typo3/ [L,R]
|
|
Show complete code
|
Last edited by carrelet on 06 Dec 2005 - 10:43 pm; edited 1 time in total |
|
|
Back to top
|
|
|
moob

Joined: 11 Oct 2005 Posts: 132
|
Posted: 06 Dec 2005 - 10:42 pm Post subject:
Symlink Issues and .htaccess
|
|
|
If you are getting strange errors and Typo3 does not work try this .htaccess file. This is what we use on our servers with Typo3.
| Line: |
Code: |
1 2 3 4
| |
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^[^/]*\.html$ index.php
|
|
Show complete code
|
|
|
|
Back to top
|
|
|
|