i setup github pages successfully...
on my hoster cpanel i setup subdomain
then in github pages settings.... i add Custom domain: zephyr-guide.simplycreate.online
however simplycreate.online/zephyr-guide/ is not displaying the github pages
if i do a .htaccess 301 redirect it redirects to the subdomain. i dont want that i want the user to remain on simplycreate.online/zephyr-guide/
EDIT: i put the following in htaccess but it still redirects over to the secondary domain:
Options +FollowSymlinks -MultiViews
RewriteBase /
RewriteCond %{HTTP_HOST} simplycreate\.online [NC]
RewriteRule ^zephyr-guide/(.*) https://zephyr-guide.simplycreate.online/$1 [R=301,NC,L]