Перейти до вмісту
Пошук в
  • Детальніше...
Шукати результати, які ...
Шукати результати в ...

[Решено] Редирект и _route_


malinator

Recommended Posts

Добрый день, всем.

 

Была страница сайта (html) - http://site.ru/category.html

Сделал (ocstore) - http://site.ru/one/category

Поставил редирект в .htaccess - нормально редиректит.

 

Была страница сайта (html) - http://site.ru/oldpage.html

Сделал (ocstore) - http://site.ru/newpage

Поставил редирект в .htaccess - НЕ работает

 

Перекидывает на http://site.ru/newpage?_route_=page.html

При этом страница не работает.

 

Помогите разобраться, пробовал разными способами как на форуме писали и бесплатный редирект использовал и руками htaccess правил и в одну строку и с rewritecond rewriterule.

Почему то работает с категориями но не работает со статьями.

Змінено користувачем malinator
Надіслати
Поділитися на інших сайтах


Добрый день, всем.

 

Была страница сайта (html) - http://site.ru/category.html

Сделал (ocstore) - http://site.ru/one/category

Поставил редирект в .htaccess - нормально редиректит.

 

Была страница сайта (html) - http://site.ru/oldpage.html

Сделал (ocstore) - http://site.ru/newpage

Поставил редирект в .htaccess - НЕ работает

 

Перекидывает на http://site.ru/newpage?_route_=page.html

При этом страница не работает.

 

Помогите разобраться, пробовал разными способами как на форуме писали и бесплатный редирект использовал и руками htaccess правил и в одну строку и с rewritecond rewriterule.

Почему то работает с категориями но не работает со статьями.

https://opencartforum.com/topic/29114-%D1%80%D0%B5%D1%88%D0%B5%D0%BD%D0%BE-301-%D1%80%D0%B5%D0%B4%D0%B8%D1%80%D0%B5%D0%BA%D1%82-%D1%81%D0%BE-%D1%81%D1%82%D0%B0%D1%80%D1%8B%D1%85-%D1%81%D1%81%D1%8B%D0%BB%D0%BE%D0%BA-%D0%BD%D0%B0-%D0%BD%D0%BE%D0%B2%D1%8B%D0%B5/

поиск рулит :)

Надіслати
Поділитися на інших сайтах


не рулит, это я попробовал сразу, еще до создания этой темы

 

 

Еще бы показать правила редиректа.

 
пробовал:
Redirect 301 /about.html http://site.ru/o-nas
 
перекидывает на http://site.ru/o-nas?_route_=about.html
при этом сама страница не работает, т.е. Запрашиваемая страница не найдена!
Надіслати
Поділитися на інших сайтах


вот

# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
# 2. In your opencart directory rename htaccess.txt to .htaccess.
# For any support issues please visit: http://www.opencart.com

Options +FollowSymlinks

# Prevent Directoy listing
Options -Indexes

# Prevent Direct Access to files

Order deny,allow
Deny from all


# SEO URL Settings
RewriteEngine On
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/

RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^download/(.*) /index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

### Additional Settings that may need to be enabled for some servers
### Uncomment the commands by removing the # sign in front of it.
### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.

# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
# php_flag register_globals off

# 2. If your cart has magic quotes enabled, This may work to disable it:
# php_flag magic_quotes_gpc Off

# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try
# php_value upload_max_filesize 999M

# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value post_max_size 999M

# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_execution_time 200

# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_input_time 200

# 7. disable open_basedir limitations
# php_admin_value open_basedir none

Redirect 301 /about.html http://mysite.ru/o-nas
RewriteCond %{QUERY_STRING} ^_route_=about.html
RewriteRule ^(.*)$ http://mysite.ru/o-nas [R=301,L]

Надіслати
Поділитися на інших сайтах


вот

# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.

# 2. In your opencart directory rename htaccess.txt to .htaccess.

# For any support issues please visit: http://www.opencart.com

Options +FollowSymlinks

# Prevent Directoy listing

Options -Indexes

# Prevent Direct Access to files

Order deny,allow

Deny from all

# SEO URL Settings

RewriteEngine On

# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/

RewriteBase /

RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]

RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]

RewriteRule ^download/(.*) /index.php?route=error/not_found [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)

RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

### Additional Settings that may need to be enabled for some servers

### Uncomment the commands by removing the # sign in front of it.

### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.

# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:

# php_flag register_globals off

# 2. If your cart has magic quotes enabled, This may work to disable it:

# php_flag magic_quotes_gpc Off

# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try

# php_value upload_max_filesize 999M

# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value post_max_size 999M

# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value max_execution_time 200

# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value max_input_time 200

# 7. disable open_basedir limitations

# php_admin_value open_basedir none

Redirect 301 /about.html http://mysite.ru/o-nas

RewriteCond %{QUERY_STRING} ^_route_=about.html

RewriteRule ^(.*)$ http://mysite.ru/o-nas [R=301,L]

попробуйте так 

Redirect 301 /about.html http://mysite.ru/o-nas?

Надіслати
Поділитися на інших сайтах


попробуйте так 

Redirect 301 /about.html http://mysite.ru/o-nas?

вы видимо не читаете что я пишу...

 

пробовал:

Redirect 301 /about.html http://site.ru/o-nas
 
перекидывает на http://site.ru/o-nas?_route_=about.html
при этом сама страница не работает, т.е. Запрашиваемая страница не найдена!

домен просто заменен чтобы не светить адрес сайта

Надіслати
Поділитися на інших сайтах


вы видимо не читаете что я пишу...

 

домен просто заменен чтобы не светить адрес сайта

Вы нверное тоже читает что я написал.

Вы пробовали в конце адреса поставить знак вопроса ???

  • +1 2
Надіслати
Поділитися на інших сайтах


Надіслати
Поділитися на інших сайтах

Вы нверное тоже читает что я написал.

Вы пробовали в конце адреса поставить знак вопроса ???

Здрав будь, боярин! Заработало, спасибо.

 

 

я его использую, но он не работал со страницами

попробую и в нем знак вопроса добавить, может получится.

Змінено користувачем malinator
  • +1 1
Надіслати
Поділитися на інших сайтах


Створіть аккаунт або увійдіть для коментування

Ви повинні бути користувачем, щоб залишити коментар

Створити обліковий запис

Зареєструйтеся для отримання облікового запису. Це просто!

Зареєструвати аккаунт

Вхід

Уже зареєстровані? Увійдіть тут.

Вхід зараз
  • Зараз на сторінці   0 користувачів

    • Ні користувачів, які переглядиють цю сторінку

×
×
  • Створити...

Important Information

На нашому сайті використовуються файли cookie і відбувається обробка деяких персональних даних користувачів, щоб поліпшити користувальницький інтерфейс. Щоб дізнатися для чого і які персональні дані ми обробляємо перейдіть за посиланням . Якщо Ви натиснете «Я даю згоду», це означає, що Ви розумієте і приймаєте всі умови, зазначені в цьому Повідомленні про конфіденційність.