SEO Сообщество: Спрашивайте и помогайте

Присоединяйтесь к сообществу профессиональных веб-мастеров PR-CY, отвечайте на вопросы коллег и задавайте свои.

Q&A SEO

Грамотное перенаправление ссылок

creafor creafor  
145
  23.12.2012 16:54       1 017    
Нужна помощь в правильном оформлении перенаправлении ссылок. 
Прошу прощения что дублирую вопрос, просто на первый вопрос так и не получил ответа. 

В общем проблема в следующем. Обновил скрипт, в старом было так:

/music/Aura+Dione+Feat.+Rock+Mafia+-+Friends.html

В новом вот так: 
/music/Aura+Dione+Feat.+Rock+Mafia+-+Friends/0/

Разница в .html и /0/ 

Как правильно сделать перенаправление? 

Ответы на пост (6) Написать ответ
antony2606 antony2606
125
23.12.2012 17:03
А что вас в первом варианте не устроило?
0
antony2606 antony2606
125
23.12.2012 17:04
Сорри, невнимательно прочел вопрос! сейчас объясню
0
antony2606 antony2606
125
23.12.2012 17:05
Какая CMS ?
0
antony2606 antony2606
125
23.12.2012 17:06
.htaccess используете?
0
creafor creafor
145
23.12.2012 17:43
Это не совсем CMS. Скрипт какой то больше самописный.
на, htaccess используется.
Имеет вид:
---------------------------------------
#php_value display_errors 1#php_value display_startup_errors 1ErrorDocument 404 /404/AddDefaultCharset windows-1251RewriteEngine OnRewriteRule ^(.*)&(.*)$ $1\%2526$2 [L]
RewriteRule ^music/([^/]*)/(.*[^/])/(/?)+$ index.php?music=$1&p=$2 [QSA,L]RewriteRule ^music/([^/]*)(/?)+$ index.php?music=$1 [QSA,L]

RewriteRule ^waiting.html$ waiting.php [L]RewriteRule ^audios/(.*)/(.*)/(.*).mp3?$ download.php?a=$1&b=$2&g=$3 [QSA,L]RewriteRule ^saudio/(.*)/(.*)/(.*).mp3?$ download.php?x=$1&y=$2&g=$3 [QSA,L]RewriteRule ^abc/(.*)/(.*[^/])/?$ index.php?abc=$1&p=$2 [QSA,L]RewriteRule ^top50/$ index.php?top=top [QSA,L]RewriteRule ^rules/$ index.php?rules=rules [QSA,L]RewriteRule ^cut/$ index.php?cut=cut [QSA,L]RewriteRule ^radio_europa_plus/$ index.php?europa=europa [QSA,L]RewriteRule ^radio_maximum/$ index.php?maximum=maximum [QSA,L]RewriteRule ^russkoe_radio/$ index.php?russkoe=russkoe [QSA,L]RewriteRule ^radio_dfm/$ index.php?dfm=dfm [QSA,L]RewriteRule ^nashe_radio/$ index.php?nashe=nashe [QSA,L]RewriteRule ^radio_shanson/$ index.php?shanson=shanson [QSA,L]RewriteRule ^404/$ index.php?error=error [QSA,L]RewriteRule ^contakt.html$ form.php [L]-------------------------------------------------------
0
creafor creafor
145
23.12.2012 17:44
#php_value display_errors 1
#php_value display_startup_errors 1
ErrorDocument 404 /404/
AddDefaultCharset windows-1251
RewriteEngine On
RewriteRule ^(.*)&(.*)$ $1\%2526$2 [L]

RewriteRule ^music/([^/]*)/(.*[^/])/(/?)+$ index.php?music=$1&p=$2 [QSA,L]
RewriteRule ^music/([^/]*)(/?)+$ index.php?music=$1 [QSA,L]


RewriteRule ^waiting.html$ waiting.php [L]
RewriteRule ^audios/(.*)/(.*)/(.*).mp3?$ download.php?a=$1&b=$2&g=$3 [QSA,L]
RewriteRule ^saudio/(.*)/(.*)/(.*).mp3?$ download.php?x=$1&y=$2&g=$3 [QSA,L]
RewriteRule ^abc/(.*)/(.*[^/])/?$ index.php?abc=$1&p=$2 [QSA,L]
RewriteRule ^top50/$ index.php?top=top [QSA,L]
RewriteRule ^rules/$ index.php?rules=rules [QSA,L]
RewriteRule ^cut/$ index.php?cut=cut [QSA,L]
RewriteRule ^radio_europa_plus/$ index.php?europa=europa [QSA,L]
RewriteRule ^radio_maximum/$ index.php?maximum=maximum [QSA,L]
RewriteRule ^russkoe_radio/$ index.php?russkoe=russkoe [QSA,L]
RewriteRule ^radio_dfm/$ index.php?dfm=dfm [QSA,L]
RewriteRule ^nashe_radio/$ index.php?nashe=nashe [QSA,L]
RewriteRule ^radio_shanson/$ index.php?shanson=shanson [QSA,L]
RewriteRule ^404/$ index.php?error=error [QSA,L]
RewriteRule ^contakt.html$ form.php [L]

0