When you develop your website based on Yii PHP framework, you will need making it friendly for SEO purpose. You should make some simple changes to do this.
- Open config/web.php file. Find 'components' => [ and paste this codes below it:
- Create .htaccess file on your root directory with below body:
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
],
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
That's all. Wish succeed!
Comments
Post a Comment