Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Is there some other setting I should be changing?
#3
Open your .htaccess

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).
Reply


Messages In This Thread
RE: Is there some other setting I should be changing? - by blazejs - 2017-12-14, 18:42:51



Users browsing this thread: 1 Guest(s)