Несколько URL для одного файла htaccess - PullRequest
1 голос
/ 08 января 2012

Я использую htaccess для SEO-дружественных URL-адресов и сталкиваюсь с этой проблемой: -

RewriteRule sign-up                 sign-up.php?optFile=register
RewriteRule update-profile          sign-up.php?optFile=register&action=update
RewriteRule error-update-profile    sign-up.php?optFile=register&action=update&info=error
RewriteRule info-update-profile     sign-up.php?optFile=register&action=update&info=info
RewriteRule success-update-profile  sign-up.php?optFile=register&action=update&info=success

Независимо от того, какую ссылку я выберу, все они перенаправляют на 1-й URL.

Пожалуйста, кто-нибудь может помочь ???

1 Ответ

0 голосов
/ 08 января 2012

Измените свой код на:

Options +FollowSymLinks -MultiViews
RewriteEngine on

RewriteRule ^sign-up/?$                 sign-up.php?optFile=register [L]
RewriteRule ^update-profile/?$          sign-up.php?optFile=register&action=update [L]
RewriteRule ^error-update-profile/?$    sign-up.php?optFile=register&action=update&info=error [L]
RewriteRule ^info-update-profile/?$     sign-up.php?optFile=register&action=update&info=info [L]
RewriteRule ^success-update-profile/?$  sign-up.php?optFile=register&action=update&info=success [L]
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...