адресация ссылок в меню

Тема в разделе "Ошибки при работе с Joomla", создана пользователем popoff17, 25.03.2013.

  1. Offline

    popoff17 Недавно здесь

    Регистрация:
    08.01.2013
    Сообщения:
    9
    Симпатии:
    0
    Пол:
    Мужской
    Здравствуйте! Ребят, помогите решить проблему: Пункт меню должен направлять на материал, но направляет на непонятную мне ссылку, в результате попадаю на 404ю страницу.
    Объясню последвательность действий:

    Создаю материал. Заголовок "Тест", Алиас "test", текст материала "тест", материал опубликован, никаких запретов по доступу нет.
    Далее - создаю пункт в меню, называю "тест", тип пункта меню "материал", справа выбираю материал "тест", алиас прописываю "тест". Сохраняю. В поле "ссылка" вижу следующую запись:
    index.php?option=com_content&view=article&id=8
    Все вроде ок.
    Перехожу на сайт, жму на пункт меню "тест" и перехожу по ссылке: http://subdomain.test4.ru/index.php/Messaging/root/test.

    Вот что не так? где и что я забыл сделать?

    Заранее благодарю!
     
  2.  
  3. OlegK
    Offline

    OlegK Russian Joomla! Team Команда форума ⇒ Профи ⇐

    Регистрация:
    17.01.2011
    Сообщения:
    7 813
    Симпатии:
    771
    Пол:
    Мужской
    .htaccess включил ?
     
  4. AKopytenko
    Offline

    AKopytenko Russian Joomla! Team Команда форума

    Регистрация:
    01.09.2011
    Сообщения:
    1 963
    Симпатии:
    168
    Пол:
    Мужской
    тоже сначала хотел спросить... но что тогда такое ".../Messaging/root/..."
     
  5. Offline

    popoff17 Недавно здесь

    Регистрация:
    08.01.2013
    Сообщения:
    9
    Симпатии:
    0
    Пол:
    Мужской
    Да, конечно. Если что - вот содержимое:
    Код (CODE):
    1. ##
    2. # @package      Joomla
    3. # @copyright    Copyright (C) 2005 - 2012 Open Source Matters. All rights reserved.
    4. # @license      GNU General Public License version 2 or later; see LICENSE.txt
    5. ##
    6.  
    7. ##
    8. # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
    9. #
    10. # The line just below this section: 'Options +FollowSymLinks' may cause problems
    11. # with some server configurations.  It is required for use of mod_rewrite, but may already
    12. # be set by your server administrator in a way that dissallows changing it in
    13. # your .htaccess file.  If using it causes your server to error out, comment it out (add # to
    14. # beginning of line), reload your site in your browser and test your sef url's.  If they work,
    15. # it has been set by your server administrator and you do not need it set here.
    16. ##
    17.  
    18. ## Can be commented out if causes errors, see notes above.
    19. Options +FollowSymLinks
    20.  
    21. ## Mod_rewrite in use.
    22.  
    23. RewriteEngine On
    24.  
    25. ## Begin - Rewrite rules to block out some common exploits.
    26. # If you experience problems on your site block out the operations listed below
    27. # This attempts to block the most common type of exploit `attempts` to Joomla!
    28. #
    29. # Block out any script trying to base64_encode data within the URL.
    30. RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
    31. # Block out any script that includes a <script> tag in URL.
    32. RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
    33. # Block out any script trying to set a PHP GLOBALS variable via URL.
    34. RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
    35. # Block out any script trying to modify a _REQUEST variable via URL.
    36. RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
    37. # Return 403 Forbidden header and show the content of the root homepage
    38. RewriteRule .* index.php [F]
    39. #
    40. ## End - Rewrite rules to block out some common exploits.
    41.  
    42. ## Begin - Custom redirects
    43. #
    44. # If you need to redirect some pages, or set a canonical non-www to
    45. # www redirect (or vice versa), place that code here. Ensure those
    46. # redirects use the correct RewriteRule syntax and the [R=301,L] flags.
    47. #
    48. ## End - Custom redirects
    49.  
    50. ##
    51. # Uncomment following line if your webserver's URL
    52. # is not directly related to physical file paths.
    53. # Update Your Joomla! Directory (just / for root).
    54. ##
    55.  
    56. # RewriteBase /
    57.  
    58. ## Begin - Joomla! core SEF Section.
    59. #
    60. RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    61. #
    62. # If the requested path and file is not /index.php and the request
    63. # has not already been internally rewritten to the index.php script
    64. RewriteCond %{REQUEST_URI} !^/index\.php
    65. # and the request is for something within the component folder,
    66. # or for the site root, or for an extensionless URL, or the
    67. # requested URL ends with one of the listed extensions
    68. RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
    69. # and the requested path and file doesn't directly match a physical file
    70. RewriteCond %{REQUEST_FILENAME} !-f
    71. # and the requested path and file doesn't directly match a physical folder
    72. RewriteCond %{REQUEST_FILENAME} !-d
    73. # internally rewrite the request to the index.php script
    74. RewriteRule .* index.php [L]
    75. #
    76. ## End - Joomla! core SEF Section.
     
    Последнее редактирование модератором: 25.03.2013
  6. Offline

    popoff17 Недавно здесь

    Регистрация:
    08.01.2013
    Сообщения:
    9
    Симпатии:
    0
    Пол:
    Мужской
    я посмотрел в бд - в таблице menu есть поля path и link. Походу этот адрес берется из поля path. В поле link все верно, адрес правильный. Может меню у меня неверно собирается из бд? или вправду какую-то настройку забыл?

    Если насчет бд прав - подскажите, какой файл редактировать? меню - main menu
     
    Последнее редактирование: 25.03.2013
  7. OlegM
    Offline

    OlegM Russian Joomla! Team Команда форума

    Регистрация:
    12.04.2007
    Сообщения:
    4 311
    Симпатии:
    375
    Пол:
    Мужской
    popoff17, незачем копировать сюда дефолтный .htaccess!
     
  8. Offline

    popoff17 Недавно здесь

    Регистрация:
    08.01.2013
    Сообщения:
    9
    Симпатии:
    0
    Пол:
    Мужской
    Понял. У меня спросили - я ответил. Я помощи прошу, потому стараюсь максимально полный ответ дать помогающим. Простите если что не так.
     

Поделиться этой страницей

Загрузка...