url giving 404 error when adding page

Asked

Viewed 34 times

1

good afternoon guys, I have a huge "headache" here on the trampo, I’m trying to add page on a site here, but it’s not working: I have to add a url like this: /novapagina sem extensão, but in htacces file is like this, and I’m not getting it right:

Obs: each phtml file is inside a folder, and the url calls by the folder name and not the file name

RewriteEngine On

RewriteCond %{HTTP_HOST} ^beta2018.emagrecentro\.com.br
RewriteRule ^(.*)$ https://emagrecentro.com.br/$1 [R=permanent,L]

RewriteCond %{HTTP_HOST} ^www\.emagrecentro\.com.br
RewriteRule ^(.*)$ https://emagrecentro.com.br/$1 [R=permanent,L]

# COM SSL
RewriteCond %{SERVER_PORT} 80
RewriteCond %{HTTP_HOST} ^(www\.)?emagrecentro\.com.br [NC]
RewriteRule ^(.*)$ https://emagrecentro.com.br/$1 [R=permanent,L]


# The following rule tells Apache that if the requested filename
# exists, simply serve it.
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
# The following rewrites all other queries to index.php. The 
# condition ensures that if you are using Apache aliases to do
# mass virtual hosting, the base path will be prepended to 
# allow proper resolution of the index.php file; it will work
# in non-aliased environments as well, providing a safe, one-size 
# fits all solution.
RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$
RewriteRule ^(.*) - [E=BASE:%1]
RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L]
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.