Files
fdn2/app/os/000-guiapi.template.conf
T

25 lines
843 B
Plaintext

<VirtualHost *:80>
DocumentRoot /var/www/§PROJECT_BUILDNAME§
<Directory /var/www/§PROJECT_BUILDNAME§>
Options FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
RewriteEngine On
RewriteRule "sitemap.xml" "sitemap.php" [L,QSA]
RewriteRule "^(.*)articolo_(.*)$" "$1articolo.php?id=$2" [QSA]
RewriteRule "^art_(.*).html$" "articolo.php?short=$1" [QSA]
RewriteRule "^mobile/art_(.*).html$" "mobile/articolo.php?short=$1" [QSA]
RewriteRule "^(.*)categorySummary_(.*)$" "$1categorySummary.php?category=$2" [QSA]
RewriteRule "^(.*)dynImg/(.*)/(.*)$" "$1getImage.php?id=$3&size=$2" [QSA]
RewriteRule "giornale/all/.*" "oldArticleRedirect.php" [L,QSA]
RewriteRule "Giornale/all/.*" "oldArticleRedirect.php" [L,QSA]
</Directory>
</VirtualHost>