私はサイトがあるとします(www.test.com
)。これでIPアドレス(102.3.0.2/index.php
)を入力するだけでサイトを表示する必要があります。どのようにしてサイトにアクセスできるかは、そのIPアドレス
私のhtaccessファイルを変更するにはどうすればいいですか?続き
は私のhtaccessファイルのコードです:これは、あなたがそれを取得しない理由である場合
#Options +FollowSymLinks
RewriteEngine on
#RewriteBase /cash-flights/
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond $1 !(^index\.php|gif$|jpg$|jpeg$|JPG$|JPEG$|GIF$|PNG$|BMP$|png$|bmp$|js$|php$|htm$|html$|css$|ttf$|txt$|pdf$|swf$|flv$|robots\.txt$|video_chat$|.ico$)
#RewriteRule ^(?!js\/tinymce)(.*?)(\.html|\.php|\/)?$ index.php/$1 [NC,L]
RewriteRule ^(?!phpinfo\.php)(?!js\/tinymce)(?!turkeyMap)(?!cron_home)(?!quote_by_sms)(?!paypal)(?!supporttrio)(?!12all)(?!system\/application\/libraries\/libgmap)(.*?)(\.html|\.php|\/)?$ index.php/$1 [NC,L]
RewriteRule ^(.*)$ - [NC,L]
#php_value session.gc_maxlifetime 86400
<Files 403.shtml>
order allow,deny
allow from all
</Files>
deny from 100.200.200.200
Options -Indexes
しかし、iamがIP経由でサイトにアクセスしようとしている場合は、wwwwにリダイレクトし、.htaccessのコードをasperに変更してください。どうすれば変更できますか? – Linto
おそらく '102.3.02'は' 102.3.0.2'を意味していたかもしれません。なぜなら、 '02'の先行ゼロは本当に正当なものではないからです。 –
これはちょうど例だった – Linto