
Originally Posted by
sudes16
I think i m missing .htaccess file. I got both the modules activated....where to find .htaccess file....bcoz when i downloaded the file i did not see the .htaccess file.
It should be on the ZIP, however, here is the .htaccess file 
Code:
# Customized error messages.
#ErrorDocument 404 /index.php
<IfModule mod_rewrite.c>
RewriteEngine on
# If your site can be accessed both with and without the 'www.' prefix, you
# can use one of the following settings to redirect users to your preferred
# URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
#
# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
RewriteCond %{HTTP_HOST} ^proxycoder\.com$ [NC]
RewriteRule ^(.*)$ http://www.proxycoder.com/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^admin\-([a-z\-]+)\.php$ admin.php?do=$1 [NC,QSA,L]
RewriteRule ^animatedcaptcha\.gif$ animatedcaptcha.php [NC,QSA,L]
RewriteRule ^(feed|rss)(\.xml)?$ index.php?do=feed [NC,QSA,L]
RewriteRule ^(feed|rss)\-([a-z\-]+)(\.xml)?$ index.php?do=feed&feedtype=$2 [NC,QSA,L]
RewriteRule ^list\-([a-z\-]+)\.php$ index.php?do=$1 [NC,QSA,L]
RewriteRule ^visit\-([a-z\-]+)\.php$ index.php [NC,QSA,L]
</IfModule>
Bookmarks