Skip to content

jVitals/jVarcade

Repository files navigation

jVArcade 2.13

Arcade games component for Joomla

Install Notes:

For game archives that have a gamedata folder a .htaccess rule is require as follows:

RewriteCond %{QUERY_STRING} ^(arcade/gamedata/$1)?$
RewriteRule /arcade/gamedata/(.*) arcade/gamedata/$1 [NC]

If using joomlas url rewrite rules in htaccess this rule must be placed before any other rules are processed. This applies to apache only not IIS and webconfig file.The below code is added directly below RewriteEngine On

#RULE GAMEDATA FOR URL REWRITE
RewriteRule ^.*/arcade/gamedata/(.*)$ arcade/gamedata/$1 [NC]

This rule solved an issue when site was hosted by 1and1 hosting.

AddType x-mapp-php5 .php
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^(arcade/gamedata/$1)?$
RewriteRule /arcade/gamedata/(.*) arcade/gamedata/$1 [NC]