
06-03-2012, 05:51 PM
|
 |
|
|
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
did you try this ?
do you use forum or suite
Quote:
Originally Posted by Hippy
you have or added the .htaccess ?
as per
edit your .htaccess If you have one
add
Code:
# Send hardcoded ipa scores to arcade instead
RewriteCond %{QUERY_STRING} act=Arcade [OR]
RewriteCond %{QUERY_STRING} autocom=arcade
RewriteRule ^index.php arcade.php [L,QSA]
under
if you don't have a .htaccess file ,make one and add this to it and upload to your root dir
Code:
RewriteEngine on
# Send hardcoded ipa scores to arcade instead
RewriteCond %{QUERY_STRING} act=Arcade [OR]
RewriteCond %{QUERY_STRING} autocom=arcade
RewriteRule ^index.php arcade.php [L,QSA]
if your RewriteEngine is not one this will not work
ask your host to enable it
|
|