.htaccess

Website URL

https://meumaterial.wuaze.com/index.php

Error Message

Hello, I’d like to know if .htaccess is allowed here. I’m trying to change my page https://meumaterial.wuaze.com/visualizar.php?pagina=fernando123

to a link like https://meumaterial.wuaze.com/fernando123.

Is this allowed? My .htaccess doesn’t seem to work with this change.

Other Information

Hello, I’d like to know if .htaccess is allowed here. I’m trying to change my page https://meumaterial.wuaze.com/visualizar.php?pagina=fernando123

to a link like https://meumaterial.wuaze.com/fernando123.

Is this allowed? My .htaccess doesn’t seem to work with this change.

Absolutely, .htaccess and mod_rewrite are fully supported here. If something is not working for you, that probably indicates a problem with your .htaccess code used.

6 Likes

my htaccess is like that:

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]

RewriteRule ^([^/]+)/?$ visualizar.php?pagina=$1 [L,QSA]

I have checked your site and I think I see the issue: you don’t have a .htaccess file.

The code you’re using is correct. However, the file it’s in is called .htaccess.txt. But that file is not recognized by the server, it must be called EXACTLY .htaccess for it to work.

Renaming the file should fix your issue.

7 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.