« Return to Thread: Does anyone know how to change backend url for security?

Re: Does anyone know how to change backend url for security?

by Kay Strobach-2 :: Rate this Message:

| View in Thread

Hi Jeson,

that path /typo3 can't be changed without having to change nearly the
complete core, so it's not recommend - especially for beginners ;) -
just keep your install updated and use strong passwords.

You may lockdown the BE with an additional .htaccess if you use an apache2.

Otherwise you may bind the backend to a specific domain:

# rewrite to primary domain for login
  RewriteCond %{HTTP_HOST} !^domain.de$
  RewriteRule ^typo3$ https://domain.de/typo3 [R=301,L]
  RewriteCond %{HTTP_HOST} !^domain.de$
  RewriteRule ^typo3(/|/index.php|/backend.php)$
https://domain.de/typo3$1 [R=301,L]

Regards
Kay

Am 20.05.2012 17:47, schrieb Task City:
> Hello!
>
> I have a problem that how to change backend url for security. Has anyone can tell me how to change it?
>
> Thanks and Best Wishes!
> Jeson


--
http://www.kay-strobach.de - Open Source Rocks

TYPO3 .... inspiring people to share!
Get involved: http://typo3.org

Answer was useful - feel free to donate:
  -
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KPM9NAV73VDF2
  - https://flattr.com/profile/kaystrobach

_______________________________________________
TYPO3-english mailing list
TYPO3-english@...
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

 « Return to Thread: Does anyone know how to change backend url for security?