Jump to content
  • 0

Помогите настроить htaccess


Yazon_Nile
 Share

Question

Всем привет. Прошу помощи знающих людей.

Заранее благодарен.

 

index.php лежит в корне вместе с .htaccess

Нужно чтобы запросы ввиде 127.0.0.1/folder/subfolder/subsubfolder... и так далее направлялись на index.php, где они будут обрабатываться. Т.е идет произвольный набор "папок".

 

Сейчас нагуглил до такого

RewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . index.php [L]

И у меня получается почти, что надо

127.0.0.1/index.php/folder/subfolder/subsubfolder

 

Осталось убрать index.php в адрессной строке.

 

Или другой путь, к которому я не могу додуматься.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Не работает. Или я не правильно применяю.

Сейчас пишу 

RewriteEngine OnDirectoryIndex /index.phpRewriteRule ^(.*)index\.php$ /$1 [R=301,L,NC]

И та же реакция.

http://127.0.0.1/lorem/ipsum/dolor  === 404.

http://127.0.0.1/index.php/lorem/ipsum/dolor  === работает.

Link to comment
Share on other sites

  • 0

Первой странички я так понимаю не существует, добавьте

ErrorDocument 404 /index.php

можно и средствами RewriteEngine, но желательно указывать в начале

RewriteEngine on RewriteBase /

у меня следующий скрипт работает

RewriteCond %{SCRIPT_FILENAME} -fRewriteCond %{SCRIPT_FILENAME} -dRewriteRule ^(.*)$ index.php

ваш вроде бы отработает только для не существующих ссылок, которые с ошибкой 404 выводятся

 

 

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