If you're missing the .htaccess file in this main folder, copy and paste the following lines into a text file and save it .htaccess NOTE: if you save it .htaccess.txt, after uploading to your server, you need to rename it .htaccess -> NOTHING before the period For some reason our zip software may not have included the .htaccess file. The beginning and ending of the file does not include the ---- BEGIN, etc or ---- END, etc. PLUS, the first and last lines ARE NOT BLANK. ---- BEGIN .HTACCESS FILE CODE ---- #php_value error_reporting 0 #DirectoryIndex main.php RewriteEngine On RewriteRule video/([^/]+)?$ index\.php?video=$1 [L] RewriteRule tag/([^/]+)?$ index\.php?tag=$1 [L] RewriteRule tag/([^/]+)/([^/]+)?$ index\.php?tag=$1&page=$2 [L] RewriteRule tag/([^/]+)/([^/]+)/([^/]+)?$ index\.php?tag=$1&page=$2&sort=$3 [L] ---- END .HTACCESS FILE CODE ----