Does 000webhost support friendly urls?

I would like to use friendly urls. Instead of

alicianakatuska.com/bio.php
to show
alicianakatuska.com/bio

000webhost allows this method? Using “Rewriting” in htaccess?
The script was working smooth in another hosting, do I have to configure something else?
Please help.

```
# 000webhost Run Php without filename extension
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php
```

http://alicianakatsuka.com/contacto :slight_smile:

This topic was automatically closed after 10 hours. New replies are no longer allowed.