Tagged Questions
2
votes
2answers
100 views
Creating a mod_rewrite rule in an htaccess file
I am trying to create a mod_rewrite rule to direct people to a sub-folder. Currently the code looks as follows:
RewriteEngine On
RewriteCond %{HTTP_HOST} abcsite.com$ [OR,NC]
RewriteCond ...
2
votes
2answers
220 views
Mapping a secondary domain to a subdirectory using mod_rewrite
I am looking to map a secondary domain to a subfolder on my document root.
For example, if requests to the domain www.example.com map to my DocumentToot, then requests to www.exampletwo.com go to ...
1
vote
2answers
342 views
.htaccess in root and subfolder, each to redirect to own index.php
I apologise for a seemingly duplicate question, but none of the dozens I've looked at actually had the same problem.
I have the following directory structure:
/.htaccess
/index.php
...
1
vote
2answers
636 views
Subfolders and mod-rewrite
I need to alter this current re-write rule to accommodate for an admin folder. Here is my current mod-rewrite code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond ...
0
votes
2answers
52 views
.htaccess to make a subfolder the main folder for primary domain, but getting redundant redirects when URL is typed directly into browser
Problem:
I'm using .htaccess to make a subfolder the main folder for my primary domain.
Everything seems to be working fine, except I noticed that when I type a URL directly, such as ...
0
votes
2answers
110 views
How to redirect these old urls to new ones (subfolder) via htaccess
I am a newbie and would like to redirect all my old urls to new ones (moved as subfolder) via htaccess. Also, with 301 permanent redirect.
Old url pattern looks like:
...
0
votes
2answers
388 views
Exclude certain subfolders and domains in redirects
This is a continuation from http://stackoverflow.com/questions/1704845/redirect-only-html-files
How can I change my .htaccess to make it exclude certain subfolders or subdomains from the HTML-only ...
0
votes
4answers
598 views
.htaccess with dynamic php - subfolder problems
Necessary Knowledge
My .htaccess file redirects like this:
domain.com/about to domain.com/index.php?page=about
RewriteRule ^([^/.]+)/?$ index.php?page=$1 [L]
The "page" variable is used in a ...