-1
I recently migrated my server to Ubuntu 14.04 with PHP 5.5.9 and Apache/2.4.7, but the rewrite that has string file name simply doesn’t work.
Error 500
RewriteRule ^tag/?(.*)/?$ /tags.php?tag=$1 [L]
Works
RewriteRule ^tag/?(.*)/?$ /atags.php?tag=$1 [L]
my apache.conf
<Directory />
        Options FollowSymLinks
        AllowOverride All
        Require all denied
</Directory>
<Directory /var/www/>
        Options FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>