I'm making the mobile version of a website and I need it to redirect any page to its mobile version:
Ex: If the page accessed is link you should redirect to link
And so on to all the others.
Note:
Current file:
# Ativa o suporte à reescrita
RewriteEngine On
Options +FollowSymLinks
#============== Para colocar o www se a url não tiver
RewriteCond %{HTTP_HOST} !^www [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
#============= Para colocar barra no final da URL que não tiver
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !index.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [L,R=301]
# Não aplica a condição para arquivos
RewriteCond %{SCRIPT_FILENAME} !-f
# Não aplica a condição para diretórios
RewriteCond %{SCRIPT_FILENAME} !-d
# Regra de reescrita onde qualquer string (.*) após a pasta,
# onde estiver o .htaccess, será interpretado por index.php passado na variável cod
RewriteRule ^(.*)$ index.php?par=$1