Jump to content
  • 0

.htaccess и ЧПУ


Victor Ananiev
 Share

Question

вот хочу сделать ЧПУ как на ВИКИ пишу такое:

RewriteEngine on
RewriteBase /

RewriteRule ^Головна$ index.php
RewriteRule ^Розклад$ timetable.php
RewriteRule ^Форум$ forum.php
RewriteRule ^Контакты$ contacts.php
RewriteRule ^Галерея$ gallery.php
RewriteRule ^Новини$ news.php

Не меняется, а пишет такое: The requested URL /РќРѕРІРёРЅРё was not found on this server.

Как сделать что бы кирилица не кодировалась?

Edited by Victor Ananiev
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Тьфу ты нуты... просто делай

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
# Main URL rewriting.
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]

</IfModule>

и лови переменную $_GET['url'] в index.php

А то у тебя просто кодировки плохи...

Edited by Ялекс
Link to comment
Share on other sites

  • 0

Я посмотрел в винде и там действительно не работает. Лечится это установкой дефолтной кодировки utf-8 через AddDefaultCharset utf-8. Но появляется другая проблема: апач ругается на делимитер в RewriteCond. Поэтому проще всего сделать как посоветовал Ялекс.

Расшифровку директив для mod_rewrite можешь посмотреть на этом сайте http://htaccess.net.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