Такой вопрос. Есть .htaccess с содержанием:
------------------------------
DirectoryIndex index.php
Options -Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^tiket index.php?modul=tiket
RewriteRule ^tiket/(.*)$ index.php?modul=tiket&page=$1
RewriteRule ^news index.php?modul=news
RewriteRule ^news/(.*)$ index.php?modul=news&page=$1
RewriteRule ^docs index.php?modul=docs
RewriteRule ^docs/(.*)$ index.php?modul=docs&page=$1
RewriteRule ^guide index.php?modul=guide
RewriteRule ^guide/(.*)$ index.php?modul=guide&page=$1
RewriteRule ^files index.php?modul=files
RewriteRule ^files/(.*)$ index.php?modul=files&page=$1
RewriteRule ^mypage index.php?modul=mypage
RewriteRule ^mypage/(.*)$ index.php?modul=mypage&page=$1
ErrorDocument 404 /index.php?modul=404
ErrorDocument 403 /index.php?modul=403
----------------------------------------------------------
Такие правила были поставлены что бы ссылки
http://localost/tiket/ перенаправлялись на
http://localost/index.php?modul=tiket Но вот проблема:
У меня появился дополнительный модуль
http://localost/techspec/ Лежит по адресу
http://localost/techspec/index.php но когда я иду по адресу
http://localost/techspec/ то попадаю на
http://localost/index.php Как дописать или переписать правила что бы
http://localost/techspec/ перенаправлялся на
http://localost/techspec/index.php (соответственно с сss и т.д.)
а
http://localost/tiket/, http://localost/news/ и т.д. перенаправлялись на
http://localost/index.php