↧
The one and only method to remove multiple/double slashes from URLs (apache,...
That’s the solution that worked for me … # remove multiple slashes RewriteCond %{REQUEST_URI} ^(.*)//(.*)$ [NC] RewriteRule . %1/%2 [R=301,L] # ... within URL-path RewriteRule ^(([^/]+/)*)/+(.*)$...
View ArticlePHP in der Cloud: cloudControl aus Deutschland bietet PaaS für PHP
Wer eine Webseite betreibt oder gar eine Webapplikation muss sich unweigerlich um Hosting und Server Administration kümmern. Dabei gibt es mittlerweile unendlich viele Möglichkeiten … aber jetzt kommt...
View ArticleSome interesting infos about PHP on nginx or…
Some interesting infos about: PHP on nginx or apache performance … 1. nginx + php is not faster than apache + php 2. .htaccess drops apache performance radical 3. yes, static content is very fast on...
View Article