0

サブドメイン [http://s.yourdomain.com など] でスクリプトを使用するときに短い URL スクリプトを作成すると、.htaccess は機能しませんが、スクリプトは yourdomain.com/sh/ などの他の場所では正常に機能します

これが私が書いたコードです.htaccess

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME}\.php -f 
RewriteRule ^(.*)$ $1.php
RewriteRule ^([a-zA-Z0-9]+)$ index.php?short=$1
ErrorDocument 404 /index.php

サブドメインでも機能し、上記の機能を実行する.htaccessコードが必要です

4

1 に答える 1

0
RewriteRule ^ http://s.yourdomain.com

ここでは、モバイル Web サイトで URL をリダイレクトする場合と同じように、サブ ドメイン名を渡します。http://m.yourdomain.com

于 2013-05-20T07:24:41.130 に答える