0
votes
1answer
17 views
Help me with the Clean URL problem
I have this .htaccess file
RewriteEngine on
RewriteRule ^home/ /member.php [L]
So when users type http : // domainname . com/home/ it goes to the member page
but when the user types http : // …
0
votes
1answer
12 views
Problem with internal anchors and links
I've set up a brochure ware kind of site - with links to different sections in the page.
http://www.leoniepalmer.com/
When clicking a menu item in the top right corner, everything works great!
Now …
2
votes
2answers
37 views
How does URL rewriting work?
Hey everyone,
I am new to URL rewriting and I have an .htaccess file that looks like this:
RewriteEngine On
RewriteRule /*\.(css|js|gif|png|jpe?g)$ - [NC,L]
RewriteRule "^(.*)$" …
1
vote
1answer
20 views
Code Igniter SubDirectory Question
I am trying to let the "trac" directory and all of it's subdirectories be accessible through the url http://www.domain.com/trac/
I am working with the codeginiter framework and my directory structure …
0
votes
2answers
18 views
Help with .htaccess RewriteRule. Need to take user from one URL to other.
I want users who type
http://www.example.com/word-of-the-day
to be taken to
http://www.example.com/index.php?page=word-of-the-day
But I want
http://www.example.com/word-of-the-day
to be …
3
votes
5answers
87 views
how to protect server directory using .htaccess
I have designed a website, and within it I have a range of PHP scripts which interact with my system. For example, if a user uploads an image, this is processed by the script
image.php
and if a …
1
vote
1answer
21 views
htaccess file help?
I need to install Expression Engine on a subdomain for a client, and he is already running a php-based program on the main domain. Whoever set up the database program on the main domain apparently …
1
vote
2answers
24 views
Htaccess rule to redirect domain to index.html
How do I write a rewrite-rule that redirects visitors to the domain www.mydomain.com/ to www.mydomain.com/index.html?
1
vote
3answers
43 views
switch mod rewritten URL
We are using a mod rewritten URL within our PHP site, this is the rewrite rule we are using:
RewriteRule ^category/([^.]+)/([0-9]+)/([^.]+)/([0-9]+) …
2
votes
2answers
19 views
HT Access - Mod Rewrite
If i use:
RewriteEngine On
RewriteRule ^.* controller.php
It would send all requests to controller.php
But if controller.php included a css file (/assets/css/main.css) then it wouldn't work, as …
0
votes
2answers
26 views
Redirecting from public_html to public_html/new/
I have Joomla site which was upgraded to newest version. New version is in /new/ folder. How can I instruct apache through the .htaccess file to redirect all requests to /new/ folder instead to …
0
votes
1answer
30 views
How do I enable gzip on Dreamhost?
I would like to compress all css and js on my Dreamhost site, I have found suggestions on the web but none of them work. Does anyone have a working example of gzip running on a Dreamhost site?
0
votes
5answers
76 views
.htaccess redirection
Hello I want to have some redirection made by .htaccess file:
Some examples
mysite.com/accepted -> mysite.com/index.php?type=accepted
mysite.com/waiting -> mysite.com/index.php?type=waiting
…
0
votes
1answer
35 views
allow (.) in htaccess
hi
How can i write rule in htaccess file which allow (.) in the URL.
Rule written by me as follow which is work for only that url how can i make it for all.
RewriteRule ^grek.kay$ …
0
votes
1answer
18 views
mod_rewrite send everything not matched to a rewritemap
Hi,
I have an htaccess file which begins with the regular stuff:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
then has a few rewrites eg:
…
