0
votes
0answers
10 views
using .htaccess to modify asset paths base on domain (multiple sites on one symfony app).
I'm building a symfony application thats made to run many sites. Similar to this article.
So far so good except he uses some .htaccess "voodoo". To make it so image and css file links get rewriten so …
0
votes
2answers
18 views
.htaccess mod_rewrite - how to exclude directory from rewrite rule
Hello all!
I have 8 lines of rewrite rules in my .htaccess file. I need to exclude two physical directories on my server from these rules, so they can become accessible. For now all requests are sent …
1
vote
1answer
18 views
mix two files htaccess
I need the specialists' help.
I am trying to mix two files htaccess
The first:
<IfModule mod_mime.c>
<FilesMatch "\.html\.gz$">
ForceType text/html
FileETag None
</FilesMatch>
…
1
vote
4answers
56 views
.htaccess URL rewrite help!
Hi guys,
I am using .htaccess and mod_rewrite in my little PHP framework. It's working nicely, but I want to expand on just having it redirect everything to index.php.
My directory structure is …
0
votes
2answers
20 views
Mod_rewrite Question
I have an HTML file I want rewritten as a subfolder on the server.
http://www.example.com/kids-and-family/185-summer-camp.html
to be shortened to:
http://www.example.com/camp
Is there an rewrite …
0
votes
1answer
27 views
exclude files from rewrite rule in .htaccess
I'm modifying an existing website that uses a fairly complex .htaccess file to implement a custom MVC type framework so all urls are redirected to index.php?[some parameters] or a 404 page. I'd like …
0
votes
3answers
19 views
301 Redirect Rule
Need help with an 301 htaccess redirect rule doing the following:
www.name.com/wordA/wordB/* to www.name.com/WordNEW/wordA/wordB/*
we are basically adding "WordNew".
I have three wordA and …
1
vote
2answers
46 views
Can I remove leading zeros in a url in django ?
Am redirecting urls from a legacy site, which gets me to a url like this:
http://example.com/blog/01/detail
I would like to automatically remove the leading zeros from these urls (seems it doesn't …
0
votes
2answers
43 views
CodeIgniter configuration with mod_rewrite, xampp and windows.
I'm a noob to CodeIgniter and am trying to figure out the configuration for an app I'm building. Something is wrong with my setup.
I'm running XAMPP on Windows and am using an alias directory to …
0
votes
2answers
17 views
mod_rewrite not working consistently
I've got a rewriting scheme going on that was working fine. Basically, anything in the url is passed as a querystring to index.php, so /dave/bob is rewritten to /index.php?page=dave/bob. I deal with …
0
votes
2answers
14 views
username and password not accpeted when using .htaccess and .htpasswd?
I used .htaccess and .htpasswd to restrict the admin folder which is located at root/admin
for that i used the following
.htaccess file
AuthName "Alertalert"
AuthType Basic
AuthUserFile …
0
votes
1answer
14 views
how i had to specify .htpasswd file path in .htaccess relative or absolute.
I created a password protected folder using .htpasswd. In .htacces how should i specify this .htpasswd file.
like this
AuthUserFile http://alertalert.freetzi.com/admin/.htpasswd
or
like this
…
0
votes
1answer
20 views
htaccess redirect problem
I have the following redirects in my htaccess file
Redirect 301 /communityed/index.htm http://www.domain.com/community_education
Redirect 301 /communityed …
0
votes
1answer
16 views
Mod Rewrite with Joomla
Basically I have a joomla instance with an article that uses URL rewriting.
http://example.com/kids-and-family/185-summer-camp.html goes to the corresponding article when typed into the url.
I now …
0
votes
1answer
14 views
HTTP authentication using htaccess/htpasswd …dialogue box comes up twice…
I have a site that has the main path under password protection. I also have a subfolder that have a separate (htaccess/htpasswd) password protection.
For some reason, when I access the subfolder, …
