Can't use pretty urls on subdomain

Permalink
Nothing I've tried so far with htaccess has worked. Currently I have htaccess in the folder for that subdomain. Here's what I have for code:

# -- concrete5 urls start --
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
        # -- concrete5 urls end --


What else can I do?

bjalexander
 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Try putting the subdomain folder name into the RewriteBase rule, so instead of just a forward slash put a forward slash followed by your folder name, like this
RewriteBase /your-folder-name

And the htaccess file should be in the same folder as the index.php file
And make sure the PHP Module mod_rewrite.c is enabled on the server.