Reputation: 215
I have a little ht code , i just want to
Know what does this code do exactly ?
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_URI} !public
RewriteCond %{REQUEST_URI} !robots.txt
RewriteRule . /index.php [L]
</IfModule>
Upvotes: 0
Views: 21
Reputation: 786001
www
removal from your URL/index.php
/public
and /robots.txt
to /index.php
Upvotes: 1