2017-12-14, 18:42:51
Open your .htaccess
Look for:
Most likely your RewriteBase looks like /yourfolder, since you've installed a domain pointing to that folder your RewriteBase should be just / (slash).
Look for:
Code:
<IfModule mod_rewrite.c>
RewriteEngine on
# Usually RewriteBase is just '/', butÂ
# replace it with your subdirectory path
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]
</IfModule>
Most likely your RewriteBase looks like /yourfolder, since you've installed a domain pointing to that folder your RewriteBase should be just / (slash).