Posts by Pedro • 7 points
4 posts
-
-1
votes1
answer17
viewsA: htaccess redirect if extension and folder do not match
Done, RewriteEngine On RewriteCond %{REQUEST_FILENAME} -f RewriteRule \.(php)$ - [L] RewriteRule ^(pasta1|pasta2)($|/) - [L] RewriteRule (.*) https://www.exemplo.com/$1 [R=301,L]…
-
-1
votes1
answer17
viewsQ: htaccess redirect if extension and folder do not match
I want to have it redirected to my domain if it’s not a. php file or certain folders. php I got it: RewriteEngine On RewriteCond %{REQUEST_FILENAME} -f RewriteRule \.(php)$ - [L] RewriteRule (.*)…
-
0
votes1
answer598
viewsQ: AUTO_INCREMENT Mysql problem
I had a problem that from the ID 35218, the accounts started to be inserted from the ID 400000, but I do not remember having touched the value of AUTO_INCREMENT. What can I do to get the accounts…
-
0
votes1
answer153
views