Custom vhost for the TYPO3 Backend

 / Main / Articles / Custom vhost for the TYPO3 backend

Sometimes it makes sense from a security point of view to seperate the typo3 backend from the main site.

The mainsite is reachable under www.mydomain.com but accessing the backend should work only with typo3.backend.info.

 

Add a redirect to the .htaccess of the maindomain to /typo3/ if accessed via typo3.backend.info

File /www/path/to/yoursite/.htaccess :

 


RewriteEngine on
RewriteRule ^[^/]*\.html$  index.php
RewriteCond %{HTTP_HOST} ^typo3.backend.info$ [NC]
RewriteRule ^(.*)$ http://typo3.backend.info/typo3/ [L]

 

 

The path /typo3/ is closed for all domains except the backend domain

File /www/path/to/yoursite/typo3/.htaccess:

 


RewriteEngine ON
RewriteCond %{HTTP_HOST} !typo3.backend.info [NC]
RewriteRule ^(.*)$ http://typo3.backend.info [L,R=301]

 

 

Activate the backend vhost in your httpd.conf / corresponding vhost configuration file:

 


<VirtualHost *>
ServerName typo3.backend.info
ServerAlias admin.backend.info
DocumentRoot /www/path/to/yoursite/
ErrorLog /var/log/apache2/typo3.backend.info-error.log
CustomLog /var/log/apache2/typo3.backend.info-access.log combined
</VirtualHost>

Top 10 Updates

Using lightbox without extension geändert am  13-Jun-2008 14:20:51
Custom field for GMENU alt text geändert am  13-Jun-2008 13:58:07
Extending typoscript properties with stdWrap geändert am  13-Jun-2008 13:54:32
Create menus using data from other tables than "pages" V2  geändert am  24-Mar-2008 13:02:09
Login geändert am  17-Mar-2008 12:47:52
Forum geändert am  17-Mar-2008 10:07:47
Who is Typo3wizard.com geändert am  26-Dec-2007 16:07:32
Menu as un-nested lists (iphone navigation) geändert am  29-Oct-2007 15:05:53
IF Conditions with AND and OR operators geändert am  16-Oct-2007 19:16:04
UserFunc to fix problems with HMENU type "special=updated"  geändert am  16-Oct-2007 18:58:40
Deutsch
Search: