0

Zen Framework を使用してアプリケーションに取り組んでいます。アプリケーションは 1 つのサーバーで正しく実行されていますが、別の (共有) ホスティングに移動する必要があります。一時的な URL で zend フレームワークを実行することは可能ですか?

一時的な URL で、次のようなものを参照します: http://xx.xxx.xxx.xxx/~username

もしそうなら、これを可能にする .htaccess を共有していただけますか?

4

1 に答える 1

0

mod_rewrite を使用してリダイレクトを作成できます。

RewriteEngine On

RewriteRule ^\.htaccess$ - [F]
RewriteCond %{REQUEST_URI} =""
RewriteRule ^.*$ /public/index.php [NC,L]

RewriteCond %{REQUEST_URI} !^/public/.*$
RewriteRule ^(.*)$ /public/$1

RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^.*$ - [NC,L]

RewriteRule ^public/.*$ /public/index.php [NC,L]

init フォルダーにファイルを作成します: .htaccessと上記のコードを配置します。

于 2012-05-24T20:04:11.067 に答える