uSked / mosaico-php-backend

A PHP backend for Mosaico
GNU General Public License v3.0
32 stars 34 forks source link

reintegrate InlineStyle; fix processing of stati images #13

Open bwl21 opened 8 years ago

bwl21 commented 8 years ago

I have updated my development branch to your recent refactoring:

I have trouble with the .htaccess. It did not work if the thing is installed in a subfolder. I did not commit my .htaccess though:

my development server uses an alias such that the url is http:localhost:8080/mosaico, this alias refers to a subdirectory of the server root.

<IfModule mod_rewrite.c>
Options +SymLinksIfOwnerMatch +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteBase /mosaico/backend-php/
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>