Hello everyone, I'm facing a problem with google's WebMasterConsole, some posts are indexed as follows url.com/index.php/p/57 when the person enters, the site doesn't change anything but the adsense ads are not displayed, someone passed so is it google search problem or is it some htaccess rule? laravel 9 project. Thanks in advance.
My .htaccess file
Options -MultiViews -Indexes
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]