Вот код от начала до этого момента, [code]AddDefaultCharset UTF-8
# INDEX
DirectoryIndex index.php
Options -Indexes
DirectorySlash off
Options -Indexes -MultiViews
# Кэширование файлов
FileETag MTime Size
<ifmodule mod_expires.c>
<filesmatch ".(jpg|gif|png|css|js)$">
ExpiresActive on
ExpiresDefault "access plus 1 year"
</filesmatch>
</ifmodule>
# Мод Rewrite
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.pornofup\.com$ [NC]
RewriteCond %{REQUEST_URI} !^/robots.*
RewriteRule ^(.*)$
http://pornofup.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*[^/])$ $1/ [L,R=301]
RewriteRule ^wap/?$ /index.php?act=wap [L,QSA]
RewriteRule ^web/?$ /index.php?act=web [L,QSA]
RewriteRule ^view/(.*)_([0-9]+).html/$ pages/app/view.php?name=$1&id=$2 [L,QSA][/code]