我需要帮助来制定一些.htaccess
规则。目前我有这个:
RewriteEngine On
Redirect 404 /favicon.ico
#Check if request was made for RSS feed
RewriteCond %{REQUEST_URI} ^(.+)/events($|/) [NC,OR]
RewriteCond %{REQUEST_URI} ^(.+)/tickers($|/) [NC]
RewriteRule ^(.*)$ rss.php/?$1 [L]
我需要的:
- 如果 URL 类似于:domain.com/events/,则不要重定向
- 如果 URL 类似于:domain.com/[anything]/events/,则进行内部重定向
events
也可以tickers