Jump to content
  • 0

mod_revrite - как опредить значение переменной?


banyman
 Share

Question

Здравствуйте!

Подскажите, пожалуйста, как определить значение переменной

такой код файла .htaccess

Options +FollowSymLinks
RewriteEngine On
RewriteBase /users/
RewriteCond %{REQUEST_URI} !userproductsedit.php
RewriteRule ^userproductsedit(.*)$ userproductsedit.php?id=$1 [L]

Директория открывается (если ссылку в браузере набрать)

http://test3.ru/users/userproductsedit/

А с переменной, типа

http://test3.ru/users/userproductsedit/1

не получается. Не проходт проверку на наличие id

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Создал тестовый скрипт

.htaccess

Options +FollowSymLinks
RewriteEngine On
RewriteBase /m/

RewriteCond %{REQUEST_URI} !mod.php
RewriteRule ^mod(.*)$ mod.php?id=$1 [L]

РНР

<a href="/m/mod/1">Один</a>

<a href="/m/mod/2/">Два</a>

<a href="/m/mod/3.html">Три</a>




<?
if (isset($id)) $id = $_GET['id'];

if (!isset($id)) {
echo ' + ';
}
if ($id == 1) {
echo 'Да';
}
if ($id == 2) {
echo 2;
}
if ($id == 3) {
echo 3;
}
else {
echo '
Нет
';
}
echo $id;

echo выдает

Нет - то есть переменная существует

и в ней - .php/3.html - если кликнуть по ссылке "Три"

.php/1, .php/2/ - соответственно

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