Jump to content
  • 0

Переадресация в htacces


SuperPuperLesha
 Share

Question

Добрый день,

скажите плиз,

как мне с помощью htaccess переадресовать запросы типа

http://site/dir1 или http://site/dir2

на http://site/url.php

кроме http://site/ или http://site/index.php?a=b

Спасибо...

Edited by SuperPuperLesha
Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

У меня тоже подобный вопрос

как сделать

http://www.site.ru/view.php?userlogin=rest112

в

http://www.rest112.site.ru

есть код

RewriteBase /

RewriteCond %{HTTP_HOST} !^www\.site\.ru$

RewriteCond %{HTTP_HOST} (www\.)?(.*)\.site\.ru$

RewriteRule ^(.*)$ view.php?userlogin=%2&$1

помогите пожалуйста, заранее спасибо

Link to comment
Share on other sites

  • 0

Не очень понятно что именно надо: то ли преобразовывать someuser.site.ru в site.ru/userlogin=someuser, то ли наоборот. Если первый вариант, то вроде всё правильно делаете. У меня вот так работает:

RewriteCond %{HTTP_HOST} !^test\.local$
RewriteCond %{HTTP_HOST} (.*)\.test\.local$
RewriteRule ^(.*)$ index.php?userlogin=%1

Link to comment
Share on other sites

  • 0

У меня сейчас так http://www.site.ru/view.php?userlogin=rest112, а надо http://www.rest112.site.ru .

RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.site\.ru$
RewriteCond %{HTTP_HOST} (www\.)?(.*)\.site\.ru$
RewriteRule ^(.*)$ view.php?userlogin=%2&$1

этот код стоит но не работает, выходит страница "Невозможно найти удалённый сервер" а может быть что хостинг не переваривает такие перенаправления. ?

Link to comment
Share on other sites

  • 0

Вероятно, просто в DNS не указаны поддомены. Надо, чтобы было

* IN A xxx.xxx.xxx.xxx

Ну и, конечно же, в апаче в конфигах сделать

ServerAlias *.site.ru

Если фронтендом стоит ещё какой-то сервер, то в нём тоже необходимо проверить, чтобы все поддомены были включены.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy