Tagged Questions
1
vote
0answers
53 views
PHP UTF-8 bondary regex does not work
I have a CentOS 6 with newest updates running a LAMP stack.
A user is complaining that his code does not work and he is trying to use preg_match with unicode characters.
This is the code not ...
0
votes
1answer
147 views
Mod_rewrite excluding files/directories but including .php files
The traditional mod_rewrite for routing is as follows:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L]
...
1
vote
2answers
1k views
RegEx Match URL Pattern
I'm trying to come up with a regex pattern that will match any domains in this format:
example.com
but not this:
subdomain.example.com
Currently it needs to only cover the main TLDs (com, net, ...
1
vote
1answer
130 views
Unrestricted access to a single file + FastCGI with basic_auth for whole domain in nginx
What's the easiest way to restrict access to all files except one, where whole domain is served via FastCGI?
The problem occurring when below conf is used, is that I cannot access /dir (I'm asked for ...
0
votes
2answers
272 views
ModRewrite 9 Back Reference Limit
This is a complicated one which I hope has a simple answer...
RewriteRule ^category/([^.]+)/([0-9]+)/([^.]+)/([0-9]+) category.php?c_id=$2&filters=$3&_p=$4&name=$1
This rule would pick ...