0
votes
1answer
11 views
howto mod_rewrite every request to index.php except real files but exclude one real directory?
Let me explain my situation:
I'm using a MVC framework (CodeIgniter), so every request gets rewritten to my index.php file, which in turn routes this to my classes and functions.
…
0
votes
3answers
22 views
problem with RewriteRule and apache
I have a SSL certificate that is registered to my www domain, but all my urls point to my domain without www.
i tried this sentence:
RewriteRule ^[https://mydomain.org](.*)$ https …
1
vote
4answers
46 views
can you get me * out aaa.*.domain.com using regex ?
Hi,
No matter how hard I try I can't get this.. This matches the whole domain only when it's format is aaa.bbb.ccc .
^[^.]+\.[^.]+\.[^.]+$
Our domain name is static (domain.com …
0
votes
1answer
29 views
Apache 2 Upgrade Killed Our .htaccess, Can’t fix, please help!
We were forced to upgrade to Apache 2 today and as soon as we did our rule set that was working for months stopped working.
The behavior it shows is completely ignoring the .htace …
0
votes
5answers
51 views
Mod Rewrite path issues
I have successfully created rewrite rules to handle URLs like
http://example.com/xyz
http://example.com/xyz/
http://example.com/xyz/abc
http://example.com/xyz/abc/
Here is the …
0
votes
1answer
11 views
Friendly urls not working - modrewrite enabled. what gives?
Hi, I'm trying to install SilverStripe and during the installation, it returns an error saying that friendly links aren't working. However mod_rewrite is enabled and AllowOverride …
0
votes
5answers
70 views
php apache url rewrite
I have an url with the following format:
domain/product.php?name=product a
Now I need to rewrite this to:
domain/product a(including the space in the word) like:
http://www.direct …
0
votes
0answers
15 views
Is there a better way to handle authentication?
Right now I have a server set up for multiple clients: clientA, clientB, clientC.
Each client has their own users.
The way I have it setup is clientA goes to http://www.site.com/ …
0
votes
2answers
20 views
Mod Rewrite ignoring -d
After a day or two, I am still fighting with Mod Rewrite. It seems that 60% of my development time is spent battling the server.
My current URL structure is such that all http://e …
0
votes
1answer
14 views
htaccess file adds the virtual directory address to the url
I wrote a script to add shtml extension to all requests that don't have it. This is it:
Options +FollowSymlinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond …
0
votes
1answer
28 views
.htaccess rewrite rule
I am attempting to have the following url
http://mysite.com/orders/10000111
rewritten to
http://mysite.com/orders/details.pl/10000111
Here is what I have in my .htaccess
Rewrit …
0
votes
3answers
49 views
regex to not match if a specified string exists
i'm trying to do an apache rewrite where if the term "admin" is contained in the request_uri
mydomain.com/admin/anything_else
re-write the host to use a subdomain
admin.mydomain …
0
votes
1answer
19 views
Using mod_rewrite to add a directory.
Hi,
I have a client which requires their site to be on:
www.clienturl.com/asubdirectory
The site that will be stored in the sub directory won't be able to have the links updated …
0
votes
2answers
37 views
Confusing rewrite rule: Need help!
I need a rewrite rule that will do an internal redirect from:
<domain>/directory/<anything>/<anything>.php to:
<domain>/directory/<anything>.php with …
0
votes
1answer
22 views
Code Igniter url routing question (using trailing slashes)
I am brand new to codeIgniter.
I am very particular about urls on the sites that I develop. Is it possible to create these sorts of urls? Generally sites I develop have an integr …
