31 lines
958 B
Plaintext
31 lines
958 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>
|
|
|
|
<IfModule xsendfile_module>
|
|
XSendFile on
|
|
XSendFilePath "/tmp/xsend"
|
|
</IfModule>
|
|
|
|
|
|
</VirtualHost>
|
|
|