I am using Racspace server, whose directory structure is as
ROOT > web > Content
All of the files are placed in content
folder. But when I place .htaccess file it automatically disappears. and rules doesn't work. Whereas it is working fine on local server
The rules that are defined in .htaccess file are
RewriteEngine on
RewriteRule ^dashboard/([0-9]*)?$ dashboard.php?user_id=$1 [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php [NC,L]
RewriteCond %{QUERY_STRING} ^(\w+)=(\w+)$