Posts by Raphael Neumann • 26 points
2 posts
-
0
votes1
answer85
viewsA: Ruby and PHP in the same VPS
Yes it is possible Voce will just need to configure different ports for the service. My suggestion would be to change the door of the two services to an unconventional port != 80 and install Nginx…
-
0
votes1
answer1162
viewsA: Multiple Rewrite Rules with . htaccess
You can add the code below just after the # Redirect block RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]+)/([^/]+)$ index.php?p=$1&id=$2 [L] So Voce…