0
私はwwwとwww以外の問題を解決したいWebサイトを持っています。私は.htaccess
ファイルからこのコードを使用しようとしました。しかし、結果はありません。私のhtaccessファイルのwwwとnon www解決の問題
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule^http://www.w15.lk%{REQUEST_URI} [R=301,L,NE]
# Remove Trailing Slashes...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{THE_REQUEST} \s(.+?)/+[?\s]
RewriteRule ^(.+?)/$ /$1 [R=301,L,NE]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [L]
ウェブサイトserverfault.comは、このような質問をするのに適しています。 – reporter