unistake1 Posted January 12, 2023 Share Posted January 12, 2023 hi all, I have an issue indexing some pages on google. The page are - http://www.website.com/gigs and http://www.website.com/gigs/gig-name The webpage that is redirected to /gigs is located inside the folders httpd.www > gigs > index.php. The webpage that is redirected to /gigs/gig-name is located inside the folders httpd.www > gigs > gig-name.php. I think the issue is in my .htaccess file that is written as: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^website\.com$ RewriteRule ^(.*)$ http://www.website.com/$1 [R=301,L] # Remove .php file extension RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php RewriteRule ^gigs/$ gigs/index.php [L,NC] ErrorDocument 404 http://www.website.com/404.php This .htaccess file is located at httpd.www > .htaccess. Many thanks for any help! Quote Link to comment https://forums.phpfreaks.com/topic/315792-issue-indexing-pages-in-subfolder-maybe-htaccess-file-issue/ Share on other sites More sharing options...
requinix Posted January 12, 2023 Share Posted January 12, 2023 And what is the "issue" with indexing? Kinda missing the part where you mention what the problem is. Quote Link to comment https://forums.phpfreaks.com/topic/315792-issue-indexing-pages-in-subfolder-maybe-htaccess-file-issue/#findComment-1604570 Share on other sites More sharing options...
unistake1 Posted January 12, 2023 Author Share Posted January 12, 2023 I can't find any explanation from google or bing etc. Not sure how to find the error. I presumed my .htaccess file is incorrect somehow or you can't have maybe an index.php page in a subfolder? Quote Link to comment https://forums.phpfreaks.com/topic/315792-issue-indexing-pages-in-subfolder-maybe-htaccess-file-issue/#findComment-1604573 Share on other sites More sharing options...
kicken Posted January 12, 2023 Share Posted January 12, 2023 Try using google's search console to look for issues. Quote Link to comment https://forums.phpfreaks.com/topic/315792-issue-indexing-pages-in-subfolder-maybe-htaccess-file-issue/#findComment-1604574 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.