1

以下の opencart のデフォルトの .htaccess ファイルを使用しています。最後の 2 行を手動で追加しました。

RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [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]

RewriteCond %{REQUEST_URI} diger_olcu_aletleri
RewriteRule ^diger_olcu_aletleri$ http://www.hirdavatdeposu.com/diger-olcu-aletleri

Web サイト (http://htaccess.madewithlove.be/) を使用して確認したところ、URL が変更されました

diger_olcu_aletleri

ディガー・オルク・アレトレリ

予想通りですが、私のウェブサイトでは機能しません。何が問題になる可能性がありますか?

以下は私の完全な .htaccess ファイルです。

# 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
<FilesMatch "\.(tpl|ini|log)">
 Order deny,allow
 Deny from all
</FilesMatch>

# 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]
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]

RewriteCond %{REQUEST_URI} diger_olcu_aletleri
RewriteRule ^diger_olcu_aletleri$ http://www.hirdavatdeposu.com/diger-olcu-aletleri

### 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
4

2 に答える 2

3

OpenCart.htaccessルールの最後の行は、基本的に何でもキャッチして停止します。行の直後に 2 つの行を試してみてくださいRewriteBase.htaccessファイルは行ごとにチェックされ、最後の OC 行のinL[L,QSA]、その行が実行された後に停止することを意味します

于 2013-01-06T13:23:01.797 に答える
0

OpenCart SEO URL が表示されないという別の問題がありました。すべての Google 検索で、mod_rewrite を有効にすることが示されました。私たちの問題の解決策は、他の人が投稿したものとは少し異なっていたので、他の人が見つけるかもしれない場所で共有したいと思いました.

私たちのプラットフォーム:

-Linux バージョン 2.6.32-042stab111.11
(root@kbuild-rh6-x64.eng.sw.ru) (gcc バージョン 4.4.6 20120305 (Red Hat 4.4.6-4) (GCC) ) #1 SMP 火曜日 9 月1 18:19:12 MSK 2015

-CentOS リリース 6.8 (最終版) -\m 上のカーネル \r

サービスプロバイダー: railsplayground.com

OpenCart が cp .htaccess.txt .htaccess を指定しているため、.htaccess ファイルを正しく作成しました。

しかし、これにより、OpenCartが表示したすべてのページが壊れてしまいました。

何度も歯ぎしりした後、.htaccess ファイルのさまざまな行をコメントアウトし始めました。

それは最初の行であることが判明しました

         Options +FollowSymlinks

私たちのリンクを壊しました。この行を完全に削除すると、SEO URL が正常に機能するようになりました。

また、SEO URL の前後に / を付けないでください。

これが誰かを助けることを願っています。

于 2016-12-20T23:31:26.853 に答える