rewrite ^/index.html$ /index.php;
rewrite ^/browse.html$ /category.php;
rewrite ^/browse-(.*)-videos.html$ /category.php?cat=$1;
rewrite ^/browse-(.*)-videos-([0-9]+)-(.*).html$ /category.php?cat=$1&page=$2&sortby=$3;
rewrite ^/videos.flv(.*)$ /videos.php$1;
rewrite ^/videos.mp4(.*)$ /videos.php$1;
rewrite ^/register.html$ /register.php;
rewrite ^/contact.html$ /contact.php;
rewrite ^/edit-profile.html$ /edit-profile.php;
rewrite ^/suggest.html$ /suggest.php;
rewrite ^/upload.html$ /upload.php;
rewrite ^/upload_avatar.html$ /upload_avatar.php;
rewrite ^/suggest.html$ /suggest.php;
rewrite ^/favorites.html(.*)$ /favorites.php$1;
rewrite ^/playlists.html(.*)$ /playlists.php$1;
rewrite ^/login.html(.*)$ /login.php$1;
rewrite ^/newvideos.html(.*)$ /newvideos.php$1;
rewrite ^/topvideos.html(.*)$ /topvideos.php$1;
rewrite ^/series/(page-([0-9]+)/)?$ series.php?page=$2;
rewrite ^/series/([^/]+)/(page-([0-9]+)/)?$ series.php?s=$1&page=$3;
rewrite ^/series/([^/]+)/([^/]+)$ episode.php?s=$2;
rewrite ^/profile.html(.*)$ /profile.php$1;
rewrite ^/user/([^/]+)/?$ /user.php?u=$1;
rewrite ^/user/([^/]+)/(.*)/?$ /user.php?u=$1&view=$2;
rewrite ^/playlist/(.*)/([^/]+)(/)?$ /watch.php?playlist=$1&vid=$2;
rewrite ^/playlist/(.*)$ /playlists.php?playlist=$1;
rewrite ^/memberlist.html(.*)$ /memberlist.php$1;
rewrite ^/articles/index-([0-9]+).html$ /article.php?page=$1;
rewrite ^/articles/browse-(.*)-([0-9]+).html$ /article.php?c=$1&page=$2;
rewrite ^/articles/tag/([^/]+)/page-([0-9]+)(/)?$ /article.php?tag=$1&page=$2;
rewrite ^/articles/tag/([^/]+)(/)?$ /article.php?tag=$1&page=1;
rewrite ^/articles/popular-([0-9]+).html$ /article.php?show=popular&page=$1;
rewrite ^/articles/(.*)_([0-9]+).html$ /article-read.php?a=$2;
rewrite ^/articles(/|.html)?$ /article.php;
rewrite ^/article(/|.html)?$ /article.php;
rewrite ^/pages/(.*).html$ /page.php?name=$1;
rewrite ^/tags/([^/]+)/$ /tag.php?t=$1&page=1;
rewrite ^/tags/([^/]+)/page-([0-9]+)(/)?$ /tag.php?t=$1&page=$2;
rewrite ^/embed/([^/]+)$ /embed.php?vid=$1;
rewrite ^/([^/]*)_([a-zA-Z0-9]{9}).html$ /watch.php?vid=$2;
rewrite ^/fpembed-(.*).swf$ /fpembed.php?vid=$1;
rewrite ^/uploads/thumbs/(.*)-social\.(jpg|gif|png)$ /social-thumb.php?vid=$1;
rewrite ^/rss.xml$ /rss.php last;