fix: exclude rewriting files and directories
This commit is contained in:
parent
dd862cf84c
commit
e0ce28b393
1 changed files with 12 additions and 11 deletions
23
.htaccess
23
.htaccess
|
@ -3,27 +3,28 @@
|
|||
#
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine On
|
||||
|
||||
RewriteBase /
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
|
||||
# Page
|
||||
RewriteRule ^([a-z\-]+)$ index.php?page=$1 [QSA,L]
|
||||
RewriteRule ^([a-z\-]+)$ /index.php?page=$1 [QSA,L]
|
||||
|
||||
# Wishlists (My lists)
|
||||
RewriteRule ^wishlists/([0-9]+)$ index.php?page=wishlists&id=$1 [QSA,L]
|
||||
RewriteRule ^wishlists/([0-9]+)/add$ index.php?page=wishlists&id=$1&wish_add=true [QSA,L]
|
||||
RewriteRule ^wishlists/([0-9]+)$ /index.php?page=wishlists&id=$1 [QSA,L]
|
||||
RewriteRule ^wishlists/([0-9]+)/add$ /index.php?page=wishlists&id=$1&wish_add=true [QSA,L]
|
||||
|
||||
# Wishlist
|
||||
RewriteRule ^wishlist/([0-9a-f]{40})$ index.php?page=wishlist&hash=$1 [QSA,L]
|
||||
RewriteRule ^wishlist/([0-9a-f]{40})$ /index.php?page=wishlist&hash=$1 [QSA,L]
|
||||
|
||||
# Blog Post
|
||||
RewriteRule ^blog/([a-z\-0-9]+)$ index.php?page=post&slug=$1 [QSA,L]
|
||||
RewriteRule ^blog/([a-z\-0-9]+)$ /index.php?page=post&slug=$1 [QSA,L]
|
||||
|
||||
# API
|
||||
RewriteRule ^api/([a-zA-Z\-0-9=]+)$ index.php?page=api&module=$1 [QSA,L]
|
||||
RewriteRule ^api/([a-zA-Z\-0-9=]+)$ /index.php?page=api&module=$1 [QSA,L]
|
||||
|
||||
RewriteRule ^api/statistics/([a-zA-Z0-9=]+)$ index.php?page=api&module=statistics&table=$1 [QSA,L]
|
||||
RewriteRule ^api/url/([a-zA-Z0-9=]+)$ index.php?page=api&module=url&url=$1 [QSA,L]
|
||||
RewriteRule ^api/wishlists/([0-9]+)$ index.php?page=api&module=wishlists&wishlist_id=$1 [QSA,L]
|
||||
RewriteRule ^api/wishlists/([0-9a-f]{40})$ index.php?page=api&module=wishlists&wishlist_hash=$1 [QSA,L]
|
||||
RewriteRule ^api/statistics/([a-zA-Z0-9=]+)$ /index.php?page=api&module=statistics&table=$1 [QSA,L]
|
||||
RewriteRule ^api/url/([a-zA-Z0-9=]+)$ /index.php?page=api&module=url&url=$1 [QSA,L]
|
||||
RewriteRule ^api/wishlists/([0-9]+)$ /index.php?page=api&module=wishlists&wishlist_id=$1 [QSA,L]
|
||||
RewriteRule ^api/wishlists/([0-9a-f]{40})$ /index.php?page=api&module=wishlists&wishlist_hash=$1 [QSA,L]
|
||||
</IfModule>
|
||||
|
|
Loading…
Reference in a new issue