0
をhtaccessファイルをリダイレクトするために、私はホームページがsite.pt/pt/home
でそう、私は.htaccess
に配置する必要がありますが、私は、私はこのコードを持っているか...どのように特定のURLに
知らないでウェブサイトを持っている:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [L]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
どうすればいいですか?
ありがとうございます。
これはあなたのホームサイトです/ pt/home to what? –
私のホームページはsite.pt/pt/home @MohammedElhagです – user3242861
リダイレクト先はどこですか?あなたは特定のURLを言った、どこですか? –