I always see this error: (2019-02-07 12:31:48.595 [ERROR] [/home/shopph/domains/example.com/public_html/.htaccess:4] Invalid rewrite base: 'http://example.com/')
My codes in .htaccess are as follow:
Options All -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase http://example.com/
RewriteRule ^index\.php - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.php [NC,L]
#RewriteRule . index.php [L]
</IfModule>
The aforementioned error prevent to run my program. I would be appreciated if you help me to tackle my problem. Best Regards