Skip to content

Instantly share code, notes, and snippets.

@Ourelius
Created October 15, 2015 15:11
Show Gist options
  • Save Ourelius/d468d79ff00124ddf671 to your computer and use it in GitHub Desktop.
Save Ourelius/d468d79ff00124ddf671 to your computer and use it in GitHub Desktop.
Typo3 .htaccess => RealURL ready
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin *
</IfModule>
RewriteEngine On
RewriteBase /
RewriteRule ^(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/ - [L]
RewriteRule ^typo3$ typo3/index_re.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* /index.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment