skip to Main Content

.htaccess redirect to subdomain url with hash – Apache

I'm trying to redirect a site with the following url structure: https://example.com/2021/about to https://2021.example.com/#about https://example.com/2021/visit to https://2021.example.com/#visit how can i do this? i tried adding this to the /about directory in the original domain: RewriteEngine on RewriteBase / RewriteRule (.*)…

VIEW QUESTION

MAMP Apache Won't Start with Virtual Host for SimpleSAMLphp

I'm attempting to configure simpleSAMLphp within a MAMP/Apache environment on Windows 10 and below is my httpd-vhosts.conf file: <VirtualHost *:80> ServerName localhost DocumentRoot C:/MAMP/htdocs </VirtualHost> <VirtualHost *:80> ServerName simplesamlphp DocumentRoot C:/MAMP/htdocs/pro-dashboard Alias /simplesaml C:/MAMP/simplesamlphp/www <Directory C:/MAMP/simplesamlphp/www> Order allow,deny Allow from…

VIEW QUESTION

Renaming file in URL (.php file) – Apache

I have a file called filename-step1.php and looking to make the url domain.com/filename/step1 through .htaccess. My current .htaccess file looks like: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^.]+)$ $1.php [NC,L] At the moment, this works fine for removing the .php…

VIEW QUESTION

RewriteRule with dash or hyphen – SEO

In accordance with the SEO guidelines I am changing pages url from website.com/color_red/ (underscore) to website.com/color-red/ (dash / hyphen) /color-red/ must simply produce ?c=red In .htaccess this works perfectly with underscore: RewriteRule ^color_([^/.]+)/?$ ?c=$1 [L] not with dash: RewriteRule ^color-([^/.]+)/?$…

VIEW QUESTION

.htaccess redirect facebook crawlers except privacy policy

I have a SPA app with dynamic content for sharing on Facebook so I am redirecting Facebook crawlers to a nice static page using the following rule in htaccess: <IfModule mod_rewrite.c> RewriteCond %{HTTP_USER_AGENT} ^facebookexternalhit.*$ RewriteRule ^(.*)$ https://sharing.mysite.tld/api/share/$1 [L] This works…

VIEW QUESTION
Back To Top
Search