diff options
author | Master Yoda <jim_parry@bcit.ca> | 2017-07-20 16:23:44 +0200 |
---|---|---|
committer | Master Yoda <jim_parry@bcit.ca> | 2017-07-20 16:23:44 +0200 |
commit | 771eca8d9ac7fc7ebed46b3a91d384eb62debd6e (patch) | |
tree | 33c3f5778c26078eac3e8967bdd317929b826fb8 /user_guide_src/source/general | |
parent | 30f15f9317b5df49ebe880a423a317b045a495eb (diff) |
Remove changes to general/urls.rst
Diffstat (limited to 'user_guide_src/source/general')
-rw-r--r-- | user_guide_src/source/general/urls.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/general/urls.rst b/user_guide_src/source/general/urls.rst index b2b90ba39..82bcc5711 100644 --- a/user_guide_src/source/general/urls.rst +++ b/user_guide_src/source/general/urls.rst @@ -45,8 +45,8 @@ of such a file, using the "negative" method in which everything is redirected except the specified items:: RewriteEngine On - RewriteCond %{REQUEST_FILENAME} -f [OR] - RewriteCond %{REQUEST_FILENAME} -d [OR] + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] In the above example, any HTTP request other than those for existing |