Jump to content
  • 0

Как пользоваться mod_rewrite


woofs
 Share

Question

12 answers to this question

Recommended Posts

  • 0

ДА вот не могу понять куда кидать файл .htaccess, что в нем писать?

чтобы настроить чпу для следующих страниц

http://site.ru/index.php?page=*

http://site.ru/articles.php?cat=*

http://site.ru/articles.php?cat=*&id=*

неполучается

Link to comment
Share on other sites

  • 0

Кидать фаил в корень сайта.

А что в нём писать вам уже давали ссылку. почитайте, покапайте, сделайте, если не получится покажите что сделали, а уж потом и разбираться будем

Link to comment
Share on other sites

  • 0

брр, незнаю, я пробовал и на денвере и на реальном хостинге(sweb)

вот что сделал

RewriteEngine on

RewriteRule ^index/([^/\.]+)/?$ index.php?page=$1 [L]

RewriteRule ^articles/([^/\.]+)/?$ articles.php?cat=$1 [L]

вот.

лежит в корне

2009-06-02_1401.png

Получить надо

http://site.ru/articles/*/

http://site.ru/articles/*/*/

Edited by woofs
Link to comment
Share on other sites

  • 0

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, root@sweb.ru and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Не получается=(

Edited by woofs
Link to comment
Share on other sites

  • 0

в тех подержке сказали модл включен

может это потомучто еще id надо прописпть?

<Files ".htaccess">
deny from all
</Files>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^index/([0-9A-z.-_]+)$ /index.php?page=$1 [L]
RewriteRule ^articles/([([0-9A-z.-_]+)+)/$ /articles.php?cat=$1 [L]

а еще articles.php?cat=*&id=*

Edited by woofs
Link to comment
Share on other sites

  • 0

Я обычно делаю так:

ErrorDocument 404 /404.php
Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_URI} !index\.php
RewriteRule ^(.*)/$ index.php [L]

RewriteCond %{REQUEST_URI} !index\.php
RewriteRule ^/$ index.php?lang=$1 [L]

RewriteCond %{REQUEST_URI} !index\.php
RewriteRule ^(.*)/content/$ index.php?lang=$1&content=$2 [L]

RewriteCond %{REQUEST_URI} !index\.php
RewriteRule ^(.*)/content$ index.php?lang=$1&content=$2 [L]

RewriteCond %{REQUEST_URI} !index\.php
RewriteRule ^(.*)/content/(.*)/$ index.php?lang=$1&content=$2&param=$3 [L]

RewriteCond %{REQUEST_URI} !index\.php
RewriteRule ^(.*)/content/(.*)$ index.php?lang=$1&content=$2&param=$3 [L]

RewriteCond %{REQUEST_URI} !index\.php
RewriteRule ^(.*)/content/(.*)/(.*)$ index.php?lang=$1&content=$2&param=$3&id=$4 [L]

RewriteCond %{REQUEST_URI} !index\.php
RewriteRule ^(.*)/content/(.*)/(.*)/$ index.php?lang=$1&content=$2&param=$3&id=$4 [L]

сколько переменных в адресной строке, столько регулмрных и создаем в .htaccess

и нужно следить, чтобы скрипы и файл .htaccess были в одной кодировке, иначе ошибка 500 будет

Link to comment
Share on other sites

  • 0

Options +FollowSymlinks

RewriteEngine On

RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteCond %{REQUEST_FILENAME} index.php$ [OR]
RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule (.*) index.php?q=%{REQUEST_URI} [L,QSA]

все значения будут храниться в $_GET['q']. и вид можно легко конфигурировать, можно даже путь до страницы считывать от туда /page1/page2/page3/page4

здесь он еще www автоматом подставляет

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