0

私のサーバーには、これを行うはずの .htacces があります。

ziced.com/cl/something にアクセスして ziced.com/cl/index.php?var1=something に書き換えますが、うまくいきません。

ziced.com/cl/faq と ziced.com/cl/index.php?var1=faq を入力して、動作していないことを確認できます

ここに.htaccessがあります

AddHandler application/x-httpd-php5 .php

# This is the initialization
# For security reasons, Option followsymlinks cannot be overridden.
#Options +FollowSymLinks
#Options +SymLinksIfOwnerMatch
RewriteEngine On


RewriteBase /

#chilean redirect

# /cl/var1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^cl/([a-zA-Z0-9\.\*\°\~\,\%\"\'\+\(\)\-]+)/?$ /cl/index.php?var1=$1 [L,QSA]

問題が何であるかはわかっているかもしれませんが、それを修正する方法がわかりません。書き換えルールがあるウェブページ ziced.com は、metrikstudios.com のアドオンドメインです。

ziced.com は metrikstudios.com/ziced/ を指しているので、次のようなものを追加する必要があるかもしれません:

RewriteRule ^ziced/cl/([a-zA-Z0-9\.\*\°\~\,\%\"\'\+\(\)\-]+)/?$ /cl/index.php?var1=$1 [L,QSA]
4

1 に答える 1

1

問題を解決しました。サブディレクトリ ziced (metrikstudios.com/ziced) 内に .htacces を追加しました。その後、それは完璧に機能しました。

それが将来誰かのために働くことを願っています

于 2012-08-06T23:03:16.297 に答える