私のサーバーには、これを行うはずの .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]