Hi!
I paste that code in my htaccess but still no result. I can’t update the data of any row in my table, it redirects me out of the folder where my wordpress is:
when i try to update
https://snag.gy/HbKplN.jpg
After I press Update here’s where it redirects me
https://snag.gy/QaRsmr.jpg
this is the htaccess i use in the public folder to redirect to “inner” folder where my wordpress is :
# BlueHost.com
# .htaccess main domain to subdirectory redirect
# Do not change this line.
RewriteEngine on
# Change example.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?intranet$
# Change ‘subdirectory’ to be the directory you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/inner/
# Don’t change the following two lines.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change ‘subdirectory’ to be the directory you will use for your main domain.
RewriteRule ^(.*)$ /inner/$1
# Change example.com to be your main domain again.
# Change ‘subdirectory’ to be the directory you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?intranet$
RewriteRule ^(/)?$ inner/index.php [L]
<FilesMatch “(admin-ajax.php)$”>
Satisfy Any
Order allow,deny
Allow from all
Deny from none
</FilesMatch>
I appreciate any help