Jump to content
  • 0

Вопрос по RewriteRule в .htaccess


German55
 Share

Question

Здравствуйте,у меня есть ссылка вида http://localhost/mysite/tinyurl/go.php?url=77 ведущая на скрипт укорачивания ссылок,ее нужно преобразовать через .htaccess в http://localhost/mysite/tinyurl/go.php?id=77

Файл .htaccess лежит в http://localhost/mysite/tinyurl/ ,в нем я пробовал писать следущие варианты:

RewriteEngine On

RewriteRule ^url=([0-9A-Za-z]+)/?$ /tinyurl/go.php?id=$1 [L]

RewriteEngine On

RewriteRule ^url=([a-z0-9]*) /tinyurl/go.php?id=$1 [L]

RewriteEngine On

RewriteRule http://localhost/mysite/tinyurl/go.php?url=([0-9A-Za-z]+)/?$ http://localhost/mysite/tinyurl/go.php?id=$1 [L]

RewriteEngine On

RewriteRule http://localhost/mysite/tinyurl/go.php?url=([a-z0-9]*) http://localhost/mysite/tinyurl/go.php?id=$1 [L]

После этого, при нажатие на ссылку http://localhost/mysite/tinyurl/go.php?url=77 , она преобразуется в адресной строке браузера в http://localhost/mysite/tinyurl/

а Денвер выводит сообщение: Forbidden

You don't have permission to access /mysite/tinyurl/ on this server.

Такие сообщения от Денвера я получал, когда пробовал организовать защиту по рефферу в .htaccess. Но сейчас такая защита отсутствует.Не подскажете в чем может быть проблема ?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Стоит денвер, но с пхп туго. Поэтому собираю всякости про запас. Есть такой вариант, но НЕ пробовал сам.

RewriteEngine on

RewriteRule ^([a-z_A-Z_0-9]+)$ index.php?page=$1
RewriteRule ^([a-z_A-Z_0-9]+)/$ index.php?page=$1

RewriteRule ^([a-z_A-Z_0-9]+)/([a-z_A-Z_0-9]+)$ index.php?page=$1&id=$2
RewriteRule ^([a-z_A-Z_0-9]+)/([a-z_A-Z_0-9]+)/$ index.php?page=$1&id=$2

П.С. Хотя может стоит как то так...

RewriteEngine on
RewriteRule ^tinyurl/([^/\.]+)/?$ tinyurl.php?id=$1 [L]

П.П.С. Да и не видел чтоб кто либо задавал урл с http. Вместо http://localhost/ используйте ^. Тоесть вместо http://localhost/mysite/tinyurl/go.php?url=([a-z0-9]*) это ^mysite/tinyurl/go.php?url=([a-z0-9]*).

Ну а лучше всего по скрипту на директорию, начинать например с ^tinyurl/go.php?url=([a-z0-9]*).

П.П.П.С. Ошибка скорее всего и возникает из-за этого. Стартовая директория не локалхост а майсайт.

Edited by Ururu
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